Java org.w3c.dom.traversal NodeFilter fields, constructors, methods, implement or subclass

Example usage for Java org.w3c.dom.traversal NodeFilter fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.w3c.dom.traversal NodeFilter.

The text is from its open source code.

Implementation

org.w3c.dom.traversal.NodeFilter has the following implementations.
Click this link to see all its implementation.

Field

shortFILTER_ACCEPT
Accept the node.
shortFILTER_REJECT
Reject the node.
shortFILTER_SKIP
Skip this single node.
intSHOW_ALL
Show all Nodes.
intSHOW_ELEMENT
Show Element nodes.
intSHOW_TEXT
Show Text nodes.
intSHOW_COMMENT
Show Comment nodes.

Constructor

Method

shortacceptNode(Node n)
Test whether a specified node is visible in the logical view of a TreeWalker or NodeIterator.