Package com.ibm.wala.util.collections
Class IteratorPlusOne<T>
- java.lang.Object
-
- com.ibm.wala.util.collections.IteratorPlusOne<T>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
static <T> IteratorPlusOne<T>
make(Iterator<? extends T> it, T xtra)
T
next()
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
-
-
-
-
Method Detail
-
make
public static <T> IteratorPlusOne<T> make(Iterator<? extends T> it, T xtra)
-
remove
public void remove() throws UnsupportedOperationException
- Specified by:
remove
in interfaceIterator<T>
- Throws:
UnsupportedOperationException
-
-