Class EmptyOrderedIterator<E>
java.lang.Object
org.apache.openjpa.lib.util.collections.EmptyOrderedIterator<E>
- Type Parameters:
E
- the type to iterate.
- All Implemented Interfaces:
Iterator<E>
,OrderedIterator<E>
,ResettableIterator<E>
public class EmptyOrderedIterator<E>
extends Object
implements OrderedIterator<E>, ResettableIterator<E>
Provides an implementation of an empty ordered iterator.
- Since:
- 3.1
-
Field Summary
Modifier and TypeFieldDescriptionstatic final OrderedIterator
Singleton instance of the iterator. -
Constructor Summary
-
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface java.util.Iterator
forEachRemaining, hasNext, next, remove
Methods inherited from interface org.apache.openjpa.lib.util.collections.OrderedIterator
hasPrevious, previous
Methods inherited from interface org.apache.openjpa.lib.util.collections.ResettableIterator
reset
-
Field Details
-
INSTANCE
Singleton instance of the iterator.- Since:
- 3.1
-
-
Constructor Details
-
EmptyOrderedIterator
protected EmptyOrderedIterator()Constructor.
-
-
Method Details
-
emptyOrderedIterator
Typed instance of the iterator.- Type Parameters:
E
- the element type- Returns:
- OrderedIterator<E>
-
hasNext
public boolean hasNext() -
next
-
hasPrevious
public boolean hasPrevious() -
previous
-
nextIndex
public int nextIndex() -
previousIndex
public int previousIndex() -
add
-
set
-
remove
public void remove() -
reset
public void reset()
-