Uses of Interface
org.jsoup.select.NodeVisitor
Packages that use NodeVisitor
Package
Description
Contains example programs and use of jsoup.
Package containing classes supporting the core jsoup code.
HTML document structure nodes.
Contains the HTML parser, tag specifications, and HTML tokeniser.
Contains the jsoup HTML cleaner, and safelist definitions.
Packages to support the CSS-style element selector.
-
Uses of NodeVisitor in org.jsoup.examples
Classes in org.jsoup.examples that implement NodeVisitor -
Uses of NodeVisitor in org.jsoup.helper
Classes in org.jsoup.helper that implement NodeVisitorModifier and TypeClassDescriptionprotected static classImplements the conversion by walking the input. -
Uses of NodeVisitor in org.jsoup.nodes
Classes in org.jsoup.nodes that implement NodeVisitorModifier and TypeClassDescriptionprivate static classprivate static classMethods in org.jsoup.nodes with parameters of type NodeVisitorModifier and TypeMethodDescriptionElement.traverse(NodeVisitor nodeVisitor) Node.traverse(NodeVisitor nodeVisitor) Perform a depth-first traversal through this node and its descendants. -
Uses of NodeVisitor in org.jsoup.parser
Classes in org.jsoup.parser that implement NodeVisitorFields in org.jsoup.parser declared as NodeVisitorMethods in org.jsoup.parser with parameters of type NodeVisitorModifier and TypeMethodDescription(package private) voidTreeBuilder.nodeListener(NodeVisitor nodeListener) Set the node listener, which will then get callbacks for node insert and removals. -
Uses of NodeVisitor in org.jsoup.safety
Classes in org.jsoup.safety that implement NodeVisitorModifier and TypeClassDescriptionprivate final classIterates the input and copies trusted nodes (tags, attributes, text) into the destination. -
Uses of NodeVisitor in org.jsoup.select
Methods in org.jsoup.select with parameters of type NodeVisitorModifier and TypeMethodDescriptionElements.traverse(NodeVisitor nodeVisitor) Perform a depth-first traversal on each of the selected elements.static voidNodeTraversor.traverse(NodeVisitor visitor, Node root) Run a depth-first traverse of the root and all of its descendants.static voidNodeTraversor.traverse(NodeVisitor visitor, Elements elements) Run a depth-first traversal of each Element.