public static enum PlayerStatsEvent.StatType extends java.lang.Enum<PlayerStatsEvent.StatType>
| Enum Constant | Description |
|---|---|
CLIMB_SPEED |
|
JUMP_HEIGHT |
|
MOVE_SPEED |
|
PICKUP_RANGE |
|
RANGE |
| Modifier and Type | Method | Description |
|---|---|---|
static PlayerStatsEvent.StatType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static PlayerStatsEvent.StatType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlayerStatsEvent.StatType MOVE_SPEED
public static final PlayerStatsEvent.StatType CLIMB_SPEED
public static final PlayerStatsEvent.StatType JUMP_HEIGHT
public static final PlayerStatsEvent.StatType RANGE
public static final PlayerStatsEvent.StatType PICKUP_RANGE
public static PlayerStatsEvent.StatType[] values()
for (PlayerStatsEvent.StatType c : PlayerStatsEvent.StatType.values()) System.out.println(c);
public static PlayerStatsEvent.StatType 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 null