Class ReadOnlyIterator<T>
- java.lang.Object
-
- org.apache.wicket.util.collections.ReadOnlyIterator<T>
-
- Type Parameters:
T
-
- All Implemented Interfaces:
Iterator<T>
public abstract class ReadOnlyIterator<T> extends Object implements Iterator<T>
Base class for read-only iterators. Calls toremove()
will result in anUnsupportedOperationException
- Author:
- Igor Vaynberg (ivaynberg)
-
-
Constructor Summary
Constructors Constructor Description ReadOnlyIterator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
remove()
-
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
-
-
-
-
Constructor Detail
-
ReadOnlyIterator
public ReadOnlyIterator()
-
-