Enum Slot

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Slot>, java.lang.constant.Constable

    public enum Slot
    extends java.lang.Enum<Slot>
    Attribute Slots Used from 1.8.8 - 1.13
    • Nested Class Summary

      • Nested classes/interfaces inherited from class java.lang.Enum

        java.lang.Enum.EnumDesc<E extends java.lang.Enum<E>>
    • 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.
      • Methods inherited from class java.lang.Enum

        compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • 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 name
        java.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)