public static enum AbstractSyntacticItem.Extras extends Enum<AbstractSyntacticItem.Extras>
| Enum Constant and Description |
|---|
CONSTANT |
NAME |
STRING |
STRING_ARRAY |
SWITCH_ARRAY |
TYPE |
| Modifier and Type | Method and Description |
|---|---|
static AbstractSyntacticItem.Extras |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractSyntacticItem.Extras[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractSyntacticItem.Extras STRING
public static final AbstractSyntacticItem.Extras CONSTANT
public static final AbstractSyntacticItem.Extras TYPE
public static final AbstractSyntacticItem.Extras NAME
public static final AbstractSyntacticItem.Extras STRING_ARRAY
public static final AbstractSyntacticItem.Extras SWITCH_ARRAY
public static AbstractSyntacticItem.Extras[] values()
for (AbstractSyntacticItem.Extras c : AbstractSyntacticItem.Extras.values()) System.out.println(c);
public static AbstractSyntacticItem.Extras 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 © 2017. All rights reserved.