- java.lang.Object
-
- swim.structure.collections.ValueEntryCursor<K,V>
-
- swim.structure.collections.ValueOrderedMapCursor<K,V>
-
- All Implemented Interfaces:
Iterator<Map.Entry<K,V>>
,ListIterator<Map.Entry<K,V>>
,Cursor<Map.Entry<K,V>>
,OrderedMapCursor<K,V>
public class ValueOrderedMapCursor<K,V> extends ValueEntryCursor<K,V> implements OrderedMapCursor<K,V>
-
-
Constructor Summary
Constructors Constructor Description ValueOrderedMapCursor(OrderedMapCursor<? extends Value,? extends Value> inner, Form<K> keyForm, Form<V> valueForm)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OrderedMapCursor<Value,Value>
inner()
<K2> ValueOrderedMapCursor<K2,V>
keyClass(Class<K2> keyClass)
<K2> ValueOrderedMapCursor<K2,V>
keyForm(Form<K2> keyForm)
K
nextKey()
K
previousKey()
<V2> ValueOrderedMapCursor<K,V2>
valueClass(Class<V2> valueClass)
<V2> ValueOrderedMapCursor<K,V2>
valueForm(Form<V2> valueForm)
-
Methods inherited from class swim.structure.collections.ValueEntryCursor
add, hasNext, hasPrevious, head, isEmpty, keyForm, load, next, nextIndex, nextIndexLong, previous, previousIndex, previousIndexLong, remove, set, skip, step, valueForm
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface swim.util.Cursor
add, hasNext, hasPrevious, head, isEmpty, load, next, nextIndex, nextIndexLong, previous, previousIndex, previousIndexLong, remove, set, skip, step
-
Methods inherited from interface java.util.Iterator
forEachRemaining
-
-
-
-
Method Detail
-
inner
public OrderedMapCursor<Value,Value> inner()
- Overrides:
inner
in classValueEntryCursor<K,V>
-
keyForm
public <K2> ValueOrderedMapCursor<K2,V> keyForm(Form<K2> keyForm)
- Overrides:
keyForm
in classValueEntryCursor<K,V>
-
keyClass
public <K2> ValueOrderedMapCursor<K2,V> keyClass(Class<K2> keyClass)
- Overrides:
keyClass
in classValueEntryCursor<K,V>
-
valueForm
public <V2> ValueOrderedMapCursor<K,V2> valueForm(Form<V2> valueForm)
- Overrides:
valueForm
in classValueEntryCursor<K,V>
-
valueClass
public <V2> ValueOrderedMapCursor<K,V2> valueClass(Class<V2> valueClass)
- Overrides:
valueClass
in classValueEntryCursor<K,V>
-
nextKey
public K nextKey()
- Specified by:
nextKey
in interfaceOrderedMapCursor<K,V>
-
previousKey
public K previousKey()
- Specified by:
previousKey
in interfaceOrderedMapCursor<K,V>
-
-