diff --git a/docs/allclasses-frame.html b/docs/allclasses-frame.html index f5de6ae..cacf9e6 100644 --- a/docs/allclasses-frame.html +++ b/docs/allclasses-frame.html @@ -3,7 +3,7 @@
-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.
+ |
+
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
getClass, notify, notifyAll, wait, wait, wait
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