Package org.apache.lucene.analysis
Class CharArrayMap.EntryIterator
- java.lang.Object
-
- org.apache.lucene.analysis.CharArrayMap.EntryIterator
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description V
currentValue()
returns the value associated with the last key returnedboolean
hasNext()
Map.Entry<Object,V>
next()
use nextCharArray() + currentValue() for better efficiency.char[]
nextKey()
gets the next key...String
nextKeyString()
gets the next key as a newly created String objectvoid
remove()
V
setValue(V value)
sets the value associated with the last key returned-
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
-
nextKey
public char[] nextKey()
gets the next key... do not modify the returned char[]
-
nextKeyString
public String nextKeyString()
gets the next key as a newly created String object
-
currentValue
public V currentValue()
returns the value associated with the last key returned
-
-