Enum Slot
- java.lang.Object
-
- java.lang.Enum<Slot>
-
- me.bimmr.bimmcore.items.attributes.Slot
-
-
Method Summary
Modifier and Type Method Description static Slot
getByName(java.lang.String name)
java.lang.String
getName()
static Slot
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Slot[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HAND
public static final Slot HAND
-
OFF_HAND
public static final Slot OFF_HAND
-
MAIN_HAND
@Deprecated public static final Slot MAIN_HAND
Deprecated.
-
FEET
public static final Slot FEET
-
BOOTS
@Deprecated public static final Slot BOOTS
Deprecated.
-
LEGS
public static final Slot LEGS
-
LEGGINGS
@Deprecated public static final Slot LEGGINGS
Deprecated.
-
CHEST
public static final Slot CHEST
-
CHESTPLATE
@Deprecated public static final Slot CHESTPLATE
Deprecated.
-
HEAD
public static final Slot HEAD
-
HELMET
@Deprecated public static final Slot HELMET
Deprecated.
-
ALL
public static final Slot ALL
-
-
Method Detail
-
values
public static Slot[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Slot valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getName
public java.lang.String getName()
- Returns:
- Get Slot name
-
getByName
public static Slot getByName(java.lang.String name)
-
-