public static enum TraversalProcess.TraversalType extends Enum<TraversalProcess.TraversalType>
| Enum Constant and Description |
|---|
ABORT_TYPE |
CONTINUE_TYPE |
CUSTOM_TYPE |
SKIP_TYPE |
| Modifier and Type | Method and Description |
|---|---|
static TraversalProcess.TraversalType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TraversalProcess.TraversalType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TraversalProcess.TraversalType CONTINUE_TYPE
public static final TraversalProcess.TraversalType SKIP_TYPE
public static final TraversalProcess.TraversalType ABORT_TYPE
public static final TraversalProcess.TraversalType CUSTOM_TYPE
public static TraversalProcess.TraversalType[] values()
for (TraversalProcess.TraversalType c : TraversalProcess.TraversalType.values()) System.out.println(c);
public static TraversalProcess.TraversalType 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