ObjectSpace Homepage

JGL - The Generic Collection Library for Java
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.objectspace.jgl.BidirectionalIterator

public interface BidirectionalIterator
extends ForwardIterator
BidirectionalIterator is the interface of all iterators that can read and/or write one item at a time in a forwards or backwards direction.


Method Index

 o clone()
J++ requires clone
 o retreat()
Retreat by one.
 o retreat(int)
Retreat by a specified amount.

Methods

 o clone
 public abstract Object clone()
J++ requires clone

Overrides:
clone in class Object
 o retreat
 public abstract void retreat()
Retreat by one.

 o retreat
 public abstract void retreat(int n)
Retreat by a specified amount.

Parameters:
n - The amount to retreat.

All Packages  Class Hierarchy  This Package  Previous  Next  Index