public static enum Cheat.CheatDescription extends Enum<Cheat.CheatDescription>
Modifier and Type | Method and Description |
---|---|
String |
getDescription() |
String |
getName() |
static Cheat.CheatDescription |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Cheat.CheatDescription[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Cheat.CheatDescription VERIF
public static final Cheat.CheatDescription BLOCKS
public static final Cheat.CheatDescription NO_FIGHT
public static final Cheat.CheatDescription HEALTH
public static Cheat.CheatDescription[] values()
for (Cheat.CheatDescription c : Cheat.CheatDescription.values()) System.out.println(c);
public static Cheat.CheatDescription 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 nullpublic String getDescription()
public String getName()