- java.lang.Object
-
- swim.structure.collections.ValueIterator<T>
-
- All Implemented Interfaces:
Iterator<T>
- Direct Known Subclasses:
ValueListIterator
public class ValueIterator<T> extends Object implements Iterator<T>
-
-
Constructor Summary
Constructors Constructor Description ValueIterator(Iterator<? extends Value> inner, Form<T> valueForm)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
hasNext()
Iterator<Value>
inner()
T
next()
void
remove()
<T2> ValueIterator<T2>
valueClass(Class<T2> valueClass)
Form<T>
valueForm()
<T2> ValueIterator<T2>
valueForm(Form<T2> valueForm)
-
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
-
valueForm
public <T2> ValueIterator<T2> valueForm(Form<T2> valueForm)
-
valueClass
public <T2> ValueIterator<T2> valueClass(Class<T2> valueClass)
-
-