Package com.ibm.icu.impl
Class TextTrieMap.CharIterator
- java.lang.Object
-
- com.ibm.icu.impl.TextTrieMap.CharIterator
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanhasNext()Returns true if there is at least one more element, false otherwise.Characternext()Returns the next object and advances the iterator.intnextIndex()intprocessedLength()voidremove()Removes the last object returned bynextfrom the collection.
-
-
-
Method Detail
-
hasNext
public boolean hasNext()
Description copied from interface:IteratorReturns true if there is at least one more element, false otherwise.- Specified by:
hasNextin interfaceIterator<Character>- See Also:
Iterator.next()
-
next
public Character next()
Description copied from interface:IteratorReturns the next object and advances the iterator.- Specified by:
nextin interfaceIterator<Character>- Returns:
- the next object.
- See Also:
Iterator.hasNext()
-
remove
public void remove()
Description copied from interface:IteratorRemoves the last object returned bynextfrom the collection. This method can only be called once between each call tonext.
-
nextIndex
public int nextIndex()
-
processedLength
public int processedLength()
-
-