Class BidirectionalIterator<T>
- java.lang.Object
- 
- org.eclipse.net4j.util.collection.BidirectionalIterator<T>
 
- 
- All Implemented Interfaces:
- java.util.Iterator<T>
 
 public class BidirectionalIterator<T> extends java.lang.Object implements java.util.Iterator<T>- Since:
- 3.3
- Author:
- Eike Stepper
 
- 
- 
Constructor SummaryConstructors Constructor Description BidirectionalIterator(java.util.ListIterator<T> delegate)BidirectionalIterator(java.util.ListIterator<T> delegate, boolean backward)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.ListIterator<T>getDelegate()booleanhasNext()booleanisBackward()Tnext()voidremove()voidsetBackward(boolean backward)
 
- 
- 
- 
Method Detail- 
getDelegatepublic java.util.ListIterator<T> getDelegate() 
 - 
isBackwardpublic boolean isBackward() 
 - 
setBackwardpublic void setBackward(boolean backward) 
 - 
hasNextpublic boolean hasNext() - Specified by:
- hasNextin interface- java.util.Iterator<T>
 
 - 
removepublic void remove() - Specified by:
- removein interface- java.util.Iterator<T>
 
 
- 
 
-