public static enum Step.Test extends Enum<Step.Test>
Enum Constant and Description |
---|
ALL
Used to select all children of context node.
|
NAME
Tests the name of context node.
|
NAMESPACE
Tests the namespace of context node.
|
NODE
Tests if context node is a node (always true).
|
Modifier and Type | Method and Description |
---|---|
static Step.Test |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Step.Test[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Step.Test NODE
public static final Step.Test ALL
public static final Step.Test NAME
public static final Step.Test NAMESPACE
public static Step.Test[] values()
for (Step.Test c : Step.Test.values()) System.out.println(c);
public static Step.Test 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 null