Uses of Interface
org.jsoup.select.NodeVisitor
-
Packages that use NodeVisitor Package Description org.jsoup.examples Contains example programs and use of jsoup.org.jsoup.helper org.jsoup.nodes HTML document structure nodes.org.jsoup.safety Contains the jsoup HTML cleaner, and whitelist definitions.org.jsoup.select Packages to support the CSS-style element selector. -
-
Uses of NodeVisitor in org.jsoup.examples
Classes in org.jsoup.examples that implement NodeVisitor Modifier and Type Class Description private class
HtmlToPlainText.FormattingVisitor
-
Uses of NodeVisitor in org.jsoup.helper
Classes in org.jsoup.helper that implement NodeVisitor Modifier and Type Class Description protected static class
W3CDom.W3CBuilder
Implements the conversion by walking the input. -
Uses of NodeVisitor in org.jsoup.nodes
Classes in org.jsoup.nodes that implement NodeVisitor Modifier and Type Class Description private static class
Node.OuterHtmlVisitor
Methods in org.jsoup.nodes with parameters of type NodeVisitor Modifier and Type Method Description Node
Node. traverse(NodeVisitor nodeVisitor)
Perform a depth-first traversal through this node and its descendants. -
Uses of NodeVisitor in org.jsoup.safety
Classes in org.jsoup.safety that implement NodeVisitor Modifier and Type Class Description private class
Cleaner.CleaningVisitor
Iterates the input and copies trusted nodes (tags, attributes, text) into the destination. -
Uses of NodeVisitor in org.jsoup.select
Classes in org.jsoup.select that implement NodeVisitor Modifier and Type Class Description private static class
Collector.Accumulator
Fields in org.jsoup.select declared as NodeVisitor Modifier and Type Field Description private NodeVisitor
NodeTraversor. visitor
Methods in org.jsoup.select with parameters of type NodeVisitor Modifier and Type Method Description Elements
Elements. traverse(NodeVisitor nodeVisitor)
Perform a depth-first traversal on each of the selected elements.static void
NodeTraversor. traverse(NodeVisitor visitor, Node root)
Start a depth-first traverse of the root and all of its descendants.static void
NodeTraversor. traverse(NodeVisitor visitor, Elements elements)
Start a depth-first traverse of all elements.Constructors in org.jsoup.select with parameters of type NodeVisitor Constructor Description NodeTraversor(NodeVisitor visitor)
Deprecated.Just use the staticNodeTraversor.filter(NodeFilter, Node)
method.
-