Package org.loboevolution.traversal
Interface NodeIterator
- All Known Implementing Classes:
DTMNodeIterator
,NodeIteratorImpl
public interface NodeIterator
An iterator over the members of a list of the nodes in a subtree of the DOM.
The nodes will be returned in document order.
-
Method Details
-
getFilter
NodeFilter getFilter()getFilter.
- Returns:
- a
NodeFilter
object.
-
getRoot
Node getRoot()getRoot.
- Returns:
- a
Node
object.
-
getWhatToShow
int getWhatToShow()getWhatToShow.
- Returns:
- a
Integer
object.
-
detach
void detach()detach.
-
nextNode
Node nextNode()nextNode.
- Returns:
- a
Node
object.
-
previousNode
Node previousNode()previousNode.
- Returns:
- a
Node
object.
-