 
  | JGL - The Generic Collection Library for Java | 
 
All Packages  Class Hierarchy  This Package  Previous  Next  Index
  Interface com.objectspace.jgl.OutputIterator
  -  public interface OutputIterator
  
-  extends Cloneable
		
  
OutputIterator is the interface of all iterators that can write one
 item at a time in a forward direction.
 
    -  See Also:
    
 -  InputIterator
 
  
  -  
	advance()
   -   Advance by one.
  
 -  
	advance(int)
   -   Advance by a specified amount.
  
 -  
	clone()
   -   Return a clone of myself.
  
 -  
	put(Object)
   -   Set the object at my current position to a specified value.
 
  
put
 public abstract void put(Object object)
  -  Set the object at my current position to a specified value.
  
    -  Parameters:
    
 -  object - The object to be written at my current position.
  
 
 
 
advance
 public abstract void advance()
  -  Advance by one.
 
advance
 public abstract void advance(int n)
  -  Advance by a specified amount.
  
    -  Parameters:
    
 -  n - The amount to advance.
  
 
 
 
clone
 public abstract Object clone()
  -  Return a clone of myself.
  
    -  Overrides:
    
 -  clone in class Object
  
 
 
 
All Packages  Class Hierarchy  This Package  Previous  Next  Index