Package | Description |
---|---|
org.jsoup.select |
Packages to support the CSS-style element selector.
|
Modifier and Type | Method and Description |
---|---|
static NodeFilter.FilterResult |
NodeTraversor.filter(NodeFilter filter,
Node root)
Start a depth-first filtering of the root and all of its descendants.
|
NodeFilter.FilterResult |
Collector.FirstFinder.head(Node node,
int depth) |
NodeFilter.FilterResult |
NodeFilter.head(Node node,
int depth)
Callback for when a node is first visited.
|
NodeFilter.FilterResult |
Collector.FirstFinder.tail(Node node,
int depth) |
default NodeFilter.FilterResult |
NodeFilter.tail(Node node,
int depth)
Callback for when a node is last visited, after all of its descendants have been visited.
|
static NodeFilter.FilterResult |
NodeFilter.FilterResult.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NodeFilter.FilterResult[] |
NodeFilter.FilterResult.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|