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

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

Introduction

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

The text is from its open source code.

Implementation

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

Method

NodefirstChild()
Moves the TreeWalker to the first visible child of the current node, and returns the new node.
NodegetCurrentNode()
The node at which the TreeWalker is currently positioned.
NodeFiltergetFilter()
The filter used to screen nodes.
NodenextNode()
Moves the TreeWalker to the next visible node in document order relative to the current node, and returns the new node.
NodenextSibling()
Moves the TreeWalker to the next sibling of the current node, and returns the new node.
voidsetCurrentNode(Node currentNode)
The node at which the TreeWalker is currently positioned.