Uses of Interface
org.joox.Filter

Packages that use Filter
Package
Description
 
  • Uses of Filter in org.joox

    Subinterfaces of Filter in org.joox
    Modifier and Type
    Interface
    Description
    interface 
    A filter indicating whether an element/index should be kept when reducing an Match node set
    Methods in org.joox that return Filter
    Modifier and Type
    Method
    Description
    static Filter
    JOOX.and(Filter... filters)
    Combine filters
    static Filter
    JOOX.not(Filter filter)
    Inverse a filter
    static Filter
    JOOX.or(Filter... filters)
    Combine filters
    static Filter
    JOOX.selector(String selector)
    A filter that returns all elements matched by a given selector.
    Methods in org.joox with parameters of type Filter
    Modifier and Type
    Method
    Description
    static Filter
    JOOX.and(Filter... filters)
    Combine filters
    Match.child(Filter filter)
    Find the first matching child of each element in the current set of matched elements
    Match.children(Filter filter)
    Find all children of each element in the current set of matched elements.
    Match.filter(Filter filter)
    Reduce the current set of matched elements.
    Match.find(Filter filter)
    Find all descendants of each element in the current set of matched elements.
    Match.has(Filter filter)
    Reduce the set of matched element to those who have a descendant that matches a filter.
    boolean
    Match.is(Filter filter)
    Check if at least one element in the set of matched elements satisfies a filter.
    Match.next(Filter filter)
    Get the immediate next sibling of every element in set of matched elements, matching a filter
    Match.nextAll(Filter filter)
    Get all next siblings of every element in a set of matched elements, matching a filter
    Match.nextUntil(String until, Filter filter)
    Get all next siblings of every element in a set of matched elements, matching a filter, until the provided selector matches
    Match.nextUntil(Filter until)
    Get all next siblings of every element in a set of matched elements until the provided filter matches
    Match.nextUntil(Filter until, String selector)
    Get all next siblings of every element in a set of matched elements, matching a selector until the provided filter matches
    Match.nextUntil(Filter until, Filter filter)
    Get all next siblings of every element in a set of matched elements, matching a filter until the provided filter matches
    static Filter
    JOOX.not(Filter filter)
    Inverse a filter
    Match.not(Filter filter)
    Remove elements from the set of matched elements.
    static Filter
    JOOX.or(Filter... filters)
    Combine filters
    Match.parent(Filter filter)
    Get the immediate parent elements of every element in a set of matched elements, matching a filter
    Match.parents(Filter filter)
    Get all ancestor elements of every element in a set of matched elements, matching a filter
    Match.parentsUntil(String until, Filter filter)
    Get all ancestors of every element in a set of matched elements, matching a filter, until the provided selector matches
    Match.parentsUntil(Filter until)
    Get all ancestors of every element in a set of matched elements until the provided filter matches
    Match.parentsUntil(Filter until, String selector)
    Get all ancestors of every element in a set of matched elements, matching a selector until the provided filter matches
    Match.parentsUntil(Filter until, Filter filter)
    Get all ancestors of every element in a set of matched elements, matching a filter until the provided filter matches
    Match.prev(Filter filter)
    Get the immediate previous sibling of every element in set of matched elements, matching a filter
    Match.prevAll(Filter filter)
    Get all previous siblings of every element in a set of matched elements, matching a filter
    Match.prevUntil(String until, Filter filter)
    Get all previous siblings of every element in a set of matched elements, matching a filter, until the provided selector matches
    Match.prevUntil(Filter until)
    Get all previous siblings of every element in a set of matched elements until the provided filter matches
    Match.prevUntil(Filter until, String selector)
    Get all previous siblings of every element in a set of matched elements, matching a selector until the provided filter matches
    Match.prevUntil(Filter until, Filter filter)
    Get all previous siblings of every element in a set of matched elements, matching a filter until the provided filter matches
    Match.remove(Filter filter)
    Removes all elements from their parent nodes in the set of matched elements, matching a filter
    Match.siblings(Filter filter)
    Get all siblings of every element in a set of matched elements, matching a filter