public static enum Cheat.CheatCategory extends Enum<Cheat.CheatCategory>
Enum Constant and Description |
---|
COMBAT
Edit combat value such as attack speed of attack distance
|
MOVEMENT
Edit player movement
|
PLAYER
Edit player variable/abilities directly
|
WORLD
Edit the world of the player such as block breaker
|
Modifier and Type | Method and Description |
---|---|
String |
getName() |
Material |
getType() |
static Cheat.CheatCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Cheat.CheatCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Cheat.CheatCategory COMBAT
public static final Cheat.CheatCategory MOVEMENT
public static final Cheat.CheatCategory WORLD
public static final Cheat.CheatCategory PLAYER
public static Cheat.CheatCategory[] values()
for (Cheat.CheatCategory c : Cheat.CheatCategory.values()) System.out.println(c);
public static Cheat.CheatCategory 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 Material getType()
public String getName()