Class AbstractEmptyIterator<E>
java.lang.Object
org.apache.commons.collections4.iterators.AbstractEmptyIterator<E>
- All Implemented Interfaces:
Iterator<E>,ResettableIterator<E>
- Direct Known Subclasses:
AbstractEmptyMapIterator,EmptyIterator,EmptyListIterator,EmptyOrderedIterator
Provides an abstract implementation of an empty iterator.
- Since:
- 3.1
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidDeprecated.Will be removed in 5.0 without replacement.booleanhasNext()Always returns false, this iterator contains no elements.booleanAlways returns false, this iterator contains no elements.next()Always throws IllegalStateException, this iterator contains no elements.intAlways returns 0, this iterator contains no elements.previous()Always throws IllegalStateException, this iterator contains no elements.intAlways returns -1, this iterator contains no elements.voidremove()Always throws IllegalStateException, this iterator contains no elements.voidreset()Resets the iterator back to the position at which the iterator was created.voidAlways throws IllegalStateException, this iterator contains no elements.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface java.util.Iterator
forEachRemaining
-
Constructor Details
-
AbstractEmptyIterator
protected AbstractEmptyIterator()Constructs a new instance.
-
-
Method Details
-
add
Deprecated.Will be removed in 5.0 without replacement.Always throws UnsupportedOperationException.- Parameters:
ignored- ignore.- Throws:
UnsupportedOperationException- Always thrown.
-
hasNext
public boolean hasNext()Always returns false, this iterator contains no elements. -
hasPrevious
public boolean hasPrevious()Always returns false, this iterator contains no elements.- Returns:
- Always false.
-
next
Always throws IllegalStateException, this iterator contains no elements.- Specified by:
nextin interfaceIterator<E>- Returns:
- Always throws IllegalStateException.
- Throws:
IllegalStateException- Always thrown.
-
nextIndex
public int nextIndex()Always returns 0, this iterator contains no elements.- Returns:
- Always returns 0.
-
previous
Always throws IllegalStateException, this iterator contains no elements.- Returns:
- Always throws IllegalStateException.
- Throws:
IllegalStateException- Always thrown.
-
previousIndex
public int previousIndex()Always returns -1, this iterator contains no elements.- Returns:
- Always returns -1.
-
remove
public void remove()Always throws IllegalStateException, this iterator contains no elements.- Specified by:
removein interfaceIterator<E>- Throws:
IllegalStateException- Always thrown.
-
reset
public void reset()Description copied from interface:ResettableIteratorResets the iterator back to the position at which the iterator was created.- Specified by:
resetin interfaceResettableIterator<E>
-
set
Always throws IllegalStateException, this iterator contains no elements.- Parameters:
ignored- ignored.- Throws:
IllegalStateException- Always thrown.
-