Fields Summary |
---|
public static final short | FILTER_ACCEPTAccept the node. Navigation methods defined for
NodeIterator or TreeWalker will return this
node. |
public static final short | FILTER_REJECTReject the node. Navigation methods defined for
NodeIterator or TreeWalker will not return
this node. For TreeWalker , the children of this node
will also be rejected. NodeIterators treat this as a
synonym for FILTER_SKIP . |
public static final short | FILTER_SKIPSkip this single node. Navigation methods defined for
NodeIterator or TreeWalker will not return
this node. For both NodeIterator and
TreeWalker , the children of this node will still be
considered. |
public static final int | SHOW_ALLShow all Nodes . |
public static final int | SHOW_ELEMENTShow Element nodes. |
public static final int | SHOW_ATTRIBUTEShow Attr nodes. This is meaningful only when creating an
NodeIterator or TreeWalker with an
attribute node as its root ; in this case, it means that
the attribute node will appear in the first position of the iteration
or traversal. Since attributes are never children of other nodes,
they do not appear when traversing over the document tree. |
public static final int | SHOW_TEXTShow Text nodes. |
public static final int | SHOW_CDATA_SECTIONShow CDATASection nodes. |
public static final int | SHOW_ENTITY_REFERENCEShow EntityReference nodes. |
public static final int | SHOW_ENTITYShow Entity nodes. This is meaningful only when creating
an NodeIterator or TreeWalker with an
Entity node as its root ; in this case, it
means that the Entity node will appear in the first
position of the traversal. Since entities are not part of the
document tree, they do not appear when traversing over the document
tree. |
public static final int | SHOW_PROCESSING_INSTRUCTIONShow ProcessingInstruction nodes. |
public static final int | SHOW_COMMENTShow Comment nodes. |
public static final int | SHOW_DOCUMENTShow Document nodes. |
public static final int | SHOW_DOCUMENT_TYPEShow DocumentType nodes. |
public static final int | SHOW_DOCUMENT_FRAGMENTShow DocumentFragment nodes. |
public static final int | SHOW_NOTATIONShow Notation nodes. This is meaningful only when creating
an NodeIterator or TreeWalker with a
Notation node as its root ; in this case, it
means that the Notation node will appear in the first
position of the traversal. Since notations are not part of the
document tree, they do not appear when traversing over the document
tree. |