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