Prev Class | Next Class | Frames | No Frames |
Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Object
gnu.xml.dom.DomNodeIterator
Constructor Summary | |
|
Method Summary | |
void |
|
Node | |
Node | |
boolean |
|
NodeFilter |
|
Node |
|
int |
|
Node | |
Node |
|
Node | |
Node | |
Node |
|
Node | |
void |
|
public DomNodeIterator(Node root, int whatToShow, NodeFilter filter, boolean entityReferenceExpansion, boolean walk)
public void detach()
Detaches theNodeIterator
from the set which it iterated over, releasing any computational resources and placing theNodeIterator
in the INVALID state. Afterdetach
has been invoked, calls tonextNode
orpreviousNode
will raise the exception INVALID_STATE_ERR.
- Specified by:
- detach in interface NodeIterator
public boolean getExpandEntityReferences()
The value of this flag determines whether the children of entity reference nodes are visible to theNodeIterator
. If false, these children and their descendants will be rejected. Note that this rejection takes precedence overwhatToShow
and the filter. Also note that this is currently the only situation whereNodeIterators
may reject a complete subtree rather than skipping individual nodes.
To produce a view of the document that has entity references expanded and does not expose the entity reference node itself, use thewhatToShow
flags to hide the entity reference node and setexpandEntityReferences
to true when creating theNodeIterator
. To produce a view of the document that has entity reference nodes but no entity expansion, use thewhatToShow
flags to show the entity reference node and setexpandEntityReferences
to false.
- Specified by:
- getExpandEntityReferences in interface NodeIterator
- getExpandEntityReferences in interface TreeWalker
public NodeFilter getFilter()
TheNodeFilter
used to screen nodes.
- Specified by:
- getFilter in interface NodeIterator
- getFilter in interface TreeWalker
public Node getRoot()
The root node of theNodeIterator
, as specified when it was created.
- Specified by:
- getRoot in interface NodeIterator
- getRoot in interface TreeWalker
public int getWhatToShow()
This attribute determines which node types are presented via theNodeIterator
. The available set of constants is defined in theNodeFilter
interface. Nodes not accepted bywhatToShow
will be skipped, but their children may still be considered. Note that this skip takes precedence over the filter, if any.
- Specified by:
- getWhatToShow in interface NodeIterator
- getWhatToShow in interface TreeWalker
public Node nextNode() throws DOMException
Returns the next node in the set and advances the position of theNodeIterator
in the set. After aNodeIterator
is created, the first call tonextNode()
returns the first node in the set.
- Specified by:
- nextNode in interface NodeIterator
- nextNode in interface TreeWalker
- Returns:
- The next
Node
in the set being iterated over, ornull
if there are no more members in that set.
- Throws:
DOMException
- INVALID_STATE_ERR: Raised if this method is called after thedetach
method was invoked.
public Node previousNode() throws DOMException
Returns the previous node in the set and moves the position of theNodeIterator
backwards in the set.
- Specified by:
- previousNode in interface NodeIterator
- previousNode in interface TreeWalker
- Returns:
- The previous
Node
in the set being iterated over, ornull
if there are no more members in that set.
- Throws:
DOMException
- INVALID_STATE_ERR: Raised if this method is called after thedetach
method was invoked.
public void setCurrentNode(Node current) throws DOMException
- Specified by:
- setCurrentNode in interface TreeWalker