private static enum Strings.PlainTextState extends Enum<Strings.PlainTextState>
Modifier and Type | Method and Description |
---|---|
static Strings.PlainTextState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Strings.PlainTextState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Strings.PlainTextState TEXT
public static final Strings.PlainTextState START_TAG
public static final Strings.PlainTextState END_TAG
public static Strings.PlainTextState[] values()
for (Strings.PlainTextState c : Strings.PlainTextState.values()) System.out.println(c);
public static Strings.PlainTextState 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 © 2018. All rights reserved.