public static enum NodeFilter.FilterResult extends java.lang.Enum<NodeFilter.FilterResult>
| Enum Constant and Description |
|---|
CONTINUE
Continue processing the tree
|
REMOVE
Remove the node and its children
|
SKIP_CHILDREN
Skip the child nodes, but do call
NodeFilter.tail(org.jsoup.nodes.Node, int) next. |
SKIP_ENTIRELY
Skip the subtree, and do not call
NodeFilter.tail(org.jsoup.nodes.Node, int). |
STOP
Stop processing
|
| Modifier and Type | Method and Description |
|---|---|
static NodeFilter.FilterResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NodeFilter.FilterResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeFilter.FilterResult CONTINUE
public static final NodeFilter.FilterResult SKIP_CHILDREN
NodeFilter.tail(org.jsoup.nodes.Node, int) next.public static final NodeFilter.FilterResult SKIP_ENTIRELY
NodeFilter.tail(org.jsoup.nodes.Node, int).public static final NodeFilter.FilterResult REMOVE
public static final NodeFilter.FilterResult STOP
public static NodeFilter.FilterResult[] values()
for (NodeFilter.FilterResult c : NodeFilter.FilterResult.values()) System.out.println(c);
public static NodeFilter.FilterResult valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null