public enum DamageType extends java.lang.Enum<DamageType>
Enum Constant and Description |
---|
Concussive |
Explosive |
Ignore_Armor |
Independent |
None |
Normal |
Unknown |
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.
|
static DamageType |
withId(int id) |
public static final DamageType Independent
public static final DamageType Explosive
public static final DamageType Concussive
public static final DamageType Normal
public static final DamageType Ignore_Armor
public static final DamageType None
public static final DamageType Unknown
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 nullpublic static DamageType withId(int id)