Uses of Class
org.jsoup.select.Nodes
Packages that use Nodes
Package
Description
HTML document structure nodes.
Packages to support the CSS-style element selector.
-
Uses of Nodes in org.jsoup.nodes
Methods in org.jsoup.nodes that return NodesModifier and TypeMethodDescriptionElement.selectNodes
(String cssQuery) Find nodes that match the suppliedSelector
CSS query, with this element as the starting context.Element.selectNodes
(String cssQuery, Class<T> type) Find nodes that match the suppliedSelector
CSS query, with this element as the starting context.Element.selectNodes
(Evaluator evaluator) Find nodes that match the suppliedEvaluator
, with this element as the starting context.Element.selectNodes
(Evaluator evaluator, Class<T> type) Find nodes that match the supplied Evaluator, with this element as the starting context. -
Uses of Nodes in org.jsoup.select
Subclasses of Nodes in org.jsoup.selectModifier and TypeClassDescriptionclass
A list ofElement
s, with methods that act on every element in the list.Methods in org.jsoup.select that return NodesModifier and TypeMethodDescriptionNodes.after
(String html) Insert the supplied HTML after each matched nodes's outer HTML.Nodes.before
(String html) Insert the supplied HTML before each matched node's outer HTML.Nodes.clone()
Creates a deep copy of these nodes.Collector.collectNodes
(Evaluator evaluator, Element root, Class<T> type) Build a list of nodes that match the supplied criteria, by visiting the root and every descendant of root, and testing it against the Evaluator.Nodes.remove()
Remove each matched node from the DOM.Nodes.wrap
(String html) Wrap the supplied HTML around each matched node.