Package net.minestom.server.entity
Enum Class EquipmentSlotGroup
- All Implemented Interfaces:
Serializable
,Comparable<EquipmentSlotGroup>
,Constable
,Predicate<EquipmentSlot>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Field Summary
Modifier and TypeFieldDescriptionstatic final BinaryTagSerializer
<EquipmentSlotGroup> static final NetworkBuffer.Type
<EquipmentSlotGroup> -
Method Summary
Modifier and TypeMethodDescriptionboolean
contains
(@NotNull EquipmentSlot equipmentSlot) Returns true if this attribute slot has an effect on the givenEquipmentSlot
, false otherwise.@NotNull List
<EquipmentSlot> Returns the (potentially multiple) equipment slots associated with this attribute slot.@NotNull String
nbtName()
boolean
test
(EquipmentSlot equipmentSlot) static EquipmentSlotGroup
Returns the enum constant of this class with the specified name.static EquipmentSlotGroup[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
ANY
-
MAIN_HAND
-
OFF_HAND
-
HAND
-
FEET
-
LEGS
-
CHEST
-
HEAD
-
ARMOR
-
BODY
-
-
Field Details
-
NETWORK_TYPE
-
NBT_TYPE
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
equipmentSlots
Returns the (potentially multiple) equipment slots associated with this attribute slot. -
nbtName
-
contains
Returns true if this attribute slot has an effect on the givenEquipmentSlot
, false otherwise. -
test
- Specified by:
test
in interfacePredicate<EquipmentSlot>
-