static enum Raid.Status extends Enum<Raid.Status>
Modifier and Type | Field and Description |
---|---|
private static Raid.Status[] |
VALUES |
Modifier and Type | Method and Description |
---|---|
private static Raid.Status |
fromName(String string) |
String |
getName() |
static Raid.Status |
valueOf(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(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 nullprivate static Raid.Status fromName(String string)
public String getName()