Package org.apache.fop.hyphenation
Class TernaryTree.Iterator
- java.lang.Object
-
- org.apache.fop.hyphenation.TernaryTree.Iterator
-
- All Implemented Interfaces:
Enumeration
- Enclosing class:
- TernaryTree
public class TernaryTree.Iterator extends Object implements Enumeration
an iterator
-
-
Constructor Summary
Constructors Constructor Description Iterator()
default constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description char
getValue()
boolean
hasMoreElements()
Object
nextElement()
void
rewind()
rewind iterator-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Enumeration
asIterator
-
-
-
-
Method Detail
-
rewind
public void rewind()
rewind iterator
-
nextElement
public Object nextElement()
- Specified by:
nextElement
in interfaceEnumeration
- Returns:
- next element
-
getValue
public char getValue()
- Returns:
- value
-
hasMoreElements
public boolean hasMoreElements()
- Specified by:
hasMoreElements
in interfaceEnumeration
- Returns:
- true if more elements
-
-