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