public static enum ChoiceExpander.Mode extends java.lang.Enum<ChoiceExpander.Mode>
| Enum Constant and Description |
|---|
INLINE
Traverse grammar and inline into choices.
|
RM_VALUES
Remove value elements.
|
TEXT_VALUES
Convert value elements into text value elements.
|
TOKEN_VALUES
Convert value elements into token value elements.
|
VOID_VALUES
Convert value elements into null value elements.
|
| Modifier and Type | Method and Description |
|---|---|
static ChoiceExpander.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChoiceExpander.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChoiceExpander.Mode INLINE
public static final ChoiceExpander.Mode RM_VALUES
public static final ChoiceExpander.Mode VOID_VALUES
public static final ChoiceExpander.Mode TEXT_VALUES
public static final ChoiceExpander.Mode TOKEN_VALUES
public static ChoiceExpander.Mode[] values()
for (ChoiceExpander.Mode c : ChoiceExpander.Mode.values()) System.out.println(c);
public static ChoiceExpander.Mode 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 nullCopyright © 2014. All Rights Reserved.