public enum ENext extends Enum<ENext>
| Enum Constant and Description |
|---|
DEEP
The runner goes down the node children.
|
SKIP
Skip content of the node.
|
| Modifier and Type | Method and Description |
|---|---|
ENext |
max(ENext e)
Max of next actions.
|
static ENext |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ENext[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ENext SKIP
public static final ENext DEEP
public static ENext[] values()
for (ENext c : ENext.values()) System.out.println(c);
public static ENext 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 © 2016. All rights reserved.