public static enum NodeFilter.Action extends Enum<NodeFilter.Action>
| Enum Constant and Description |
|---|
ACCEPT
Accept the node.
|
REJECT
Reject the node.
|
SKIP
Skip this single node.
|
| Modifier and Type | Method and Description |
|---|---|
static NodeFilter.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeFilter.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeFilter.Action ACCEPT
public static final NodeFilter.Action REJECT
#FILTER_SKIP.public static final NodeFilter.Action SKIP
public static NodeFilter.Action[] values()
for (NodeFilter.Action c : NodeFilter.Action.values()) System.out.println(c);
public static NodeFilter.Action valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2004–2014 XWiki. All rights reserved.