public static enum TraverserContext.Phase extends java.lang.Enum<TraverserContext.Phase>
Modifier and Type | Method and Description |
---|---|
static TraverserContext.Phase |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TraverserContext.Phase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TraverserContext.Phase LEAVE
public static final TraverserContext.Phase ENTER
public static final TraverserContext.Phase BACKREF
public static TraverserContext.Phase[] values()
for (TraverserContext.Phase c : TraverserContext.Phase.values()) System.out.println(c);
public static TraverserContext.Phase 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