Enum AbstractEntityModDef.EntityModRarity
- java.lang.Object
-
- java.lang.Enum<AbstractEntityModDef.EntityModRarity>
-
- de.extio.spacecraft.shared.model.entity.builtin.def.mod.AbstractEntityModDef.EntityModRarity
-
- All Implemented Interfaces:
Serializable
,Comparable<AbstractEntityModDef.EntityModRarity>
- Enclosing class:
- AbstractEntityModDef
public static enum AbstractEntityModDef.EntityModRarity extends Enum<AbstractEntityModDef.EntityModRarity>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractEntityModDef.EntityModRarity
valueOf(String name)
Returns the enum constant of this type with the specified name.static AbstractEntityModDef.EntityModRarity[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMMON
public static final AbstractEntityModDef.EntityModRarity COMMON
-
RARE
public static final AbstractEntityModDef.EntityModRarity RARE
-
EPIC
public static final AbstractEntityModDef.EntityModRarity EPIC
-
LEGENDARY
public static final AbstractEntityModDef.EntityModRarity LEGENDARY
-
-
Method Detail
-
values
public static AbstractEntityModDef.EntityModRarity[] 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 (AbstractEntityModDef.EntityModRarity c : AbstractEntityModDef.EntityModRarity.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractEntityModDef.EntityModRarity 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
-
-