Package me.bimmr.bimmcore.npc
Enum NPCBase.ItemSlots
- java.lang.Object
-
- java.lang.Enum<NPCBase.ItemSlots>
-
- me.bimmr.bimmcore.npc.NPCBase.ItemSlots
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<NPCBase.ItemSlots>
,java.lang.constant.Constable
- Enclosing class:
- NPCBase
public static enum NPCBase.ItemSlots extends java.lang.Enum<NPCBase.ItemSlots>
ItemSlots NPC ENUM
-
-
Method Summary
Modifier and Type Method Description static NPCBase.ItemSlots
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static NPCBase.ItemSlots[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MAINHAND
public static final NPCBase.ItemSlots MAINHAND
Mainhand item slots.
-
OFFHAND
public static final NPCBase.ItemSlots OFFHAND
Offhand item slots.
-
FEET
public static final NPCBase.ItemSlots FEET
Feet item slots.
-
LEGS
public static final NPCBase.ItemSlots LEGS
Legs item slots.
-
CHEST
public static final NPCBase.ItemSlots CHEST
Chest item slots.
-
HEAD
public static final NPCBase.ItemSlots HEAD
Head item slots.
-
-
Method Detail
-
values
public static NPCBase.ItemSlots[] 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 NPCBase.ItemSlots 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
-
-