static enum Raid.Status extends java.lang.Enum<Raid.Status>
Modifier and Type | Field and Description |
---|---|
private static Raid.Status[] |
VALUES |
Modifier and Type | Method and Description |
---|---|
private static Raid.Status |
getByName(java.lang.String name) |
java.lang.String |
getName() |
static Raid.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Raid.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Raid.Status ONGOING
public static final Raid.Status VICTORY
public static final Raid.Status LOSS
public static final Raid.Status STOPPED
private static final Raid.Status[] VALUES
public static Raid.Status[] values()
for (Raid.Status c : Raid.Status.values()) System.out.println(c);
public static Raid.Status 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 nullprivate static Raid.Status getByName(java.lang.String name)
public java.lang.String getName()