Package org.rspeer.commons.wiki
Enum EquipmentDefinition.Stat
- java.lang.Object
-
- java.lang.Enum<EquipmentDefinition.Stat>
-
- org.rspeer.commons.wiki.EquipmentDefinition.Stat
-
- All Implemented Interfaces:
Serializable
,Comparable<EquipmentDefinition.Stat>
- Enclosing class:
- EquipmentDefinition
public static enum EquipmentDefinition.Stat extends Enum<EquipmentDefinition.Stat>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EquipmentDefinition.Stat
valueOf(String name)
Returns the enum constant of this type with the specified name.static EquipmentDefinition.Stat[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STAB
public static final EquipmentDefinition.Stat STAB
-
SLASH
public static final EquipmentDefinition.Stat SLASH
-
CRUSH
public static final EquipmentDefinition.Stat CRUSH
-
MAGIC
public static final EquipmentDefinition.Stat MAGIC
-
RANGE
public static final EquipmentDefinition.Stat RANGE
-
-
Method Detail
-
values
public static EquipmentDefinition.Stat[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EquipmentDefinition.Stat c : EquipmentDefinition.Stat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EquipmentDefinition.Stat valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-