public static enum AbstractEpic.EpicState extends java.lang.Enum<AbstractEpic.EpicState>
| Modifier and Type | Method and Description |
|---|---|
static AbstractEpic.EpicState |
forValue(java.lang.String value) |
java.lang.String |
toString() |
java.lang.String |
toValue() |
static AbstractEpic.EpicState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractEpic.EpicState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractEpic.EpicState OPENED
public static final AbstractEpic.EpicState CLOSED
public static final AbstractEpic.EpicState ALL
public static AbstractEpic.EpicState[] values()
for (AbstractEpic.EpicState c : AbstractEpic.EpicState.values()) System.out.println(c);
public static AbstractEpic.EpicState 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 nullpublic static AbstractEpic.EpicState forValue(java.lang.String value)
public java.lang.String toValue()
public java.lang.String toString()
toString in class java.lang.Enum<AbstractEpic.EpicState>