| Package | Description |
|---|---|
| org.joox |
| Modifier and Type | Interface and Description |
|---|---|
interface |
FastFilter
A filter indicating whether an element/index should be kept when reducing an
Match node set |
| Modifier and Type | Method and 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.
|
| Modifier and Type | Method and Description |
|---|---|
static Filter |
JOOX.and(Filter... filters)
Combine filters
|
Match |
Match.child(Filter filter)
Find the first matching child of each element in the current set of
matched elements
|
Match |
Match.children(Filter filter)
Find all children of each element in the current set of matched elements.
|
Match |
Match.filter(Filter filter)
Reduce the current set of matched elements.
|
Match |
Match.find(Filter filter)
Find all descendants of each element in the current set of matched
elements.
|
Match |
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 |
Match.next(Filter filter)
Get the immediate next sibling of every element in set of matched
elements, matching a filter
|
Match |
Match.nextAll(Filter filter)
Get all next siblings of every element in a set of matched elements,
matching a filter
|
Match |
Match.nextUntil(Filter until)
Get all next siblings of every element in a set of matched elements until
the provided filter matches
|
Match |
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
|
Match |
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 |
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 |
Match.not(Filter filter)
Remove elements from the set of matched elements.
|
static Filter |
JOOX.not(Filter filter)
Inverse a filter
|
static Filter |
JOOX.or(Filter... filters)
Combine filters
|
Match |
Match.parent(Filter filter)
Get the immediate parent elements of every element in a set of matched
elements, matching a filter
|
Match |
Match.parents(Filter filter)
Get all ancestor elements of every element in a set of matched elements,
matching a filter
|
Match |
Match.parentsUntil(Filter until)
Get all ancestors of every element in a set of matched elements until the
provided filter matches
|
Match |
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 |
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 |
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 |
Match.prev(Filter filter)
Get the immediate previous sibling of every element in set of matched
elements, matching a filter
|
Match |
Match.prevAll(Filter filter)
Get all previous siblings of every element in a set of matched elements,
matching a filter
|
Match |
Match.prevUntil(Filter until)
Get all previous siblings of every element in a set of matched elements
until the provided filter matches
|
Match |
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 |
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 |
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 |
Match.remove(Filter filter)
Removes all elements from their parent nodes in the set of matched
elements, matching a filter
|
Match |
Match.siblings(Filter filter)
Get all siblings of every element in a set of matched elements, matching
a filter
|
Copyright © 2019. All rights reserved.