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 Nodes
    Modifier and Type
    Method
    Description
    Element.selectNodes(String cssQuery)
    Find nodes that match the supplied Selector CSS query, with this element as the starting context.
    <T extends Node>
    Nodes<T>
    Element.selectNodes(String cssQuery, Class<T> type)
    Find nodes that match the supplied Selector CSS query, with this element as the starting context.
    Element.selectNodes(Evaluator evaluator)
    Find nodes that match the supplied Evaluator, with this element as the starting context.
    <T extends Node>
    Nodes<T>
    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.select
    Modifier and Type
    Class
    Description
    class 
    A list of Elements, with methods that act on every element in the list.
    Methods in org.jsoup.select that return Nodes
    Modifier and Type
    Method
    Description
    Nodes<T>
    Nodes.after(String html)
    Insert the supplied HTML after each matched nodes's outer HTML.
    Nodes<T>
    Nodes.before(String html)
    Insert the supplied HTML before each matched node's outer HTML.
    Nodes<T>
    Nodes.clone()
    Creates a deep copy of these nodes.
    static <T extends Node>
    Nodes<T>
    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<T>
    Nodes.remove()
    Remove each matched node from the DOM.
    Nodes<T>
    Nodes.wrap(String html)
    Wrap the supplied HTML around each matched node.