Enum Class Hand

java.lang.Object
java.lang.Enum<Hand>
net.minecraft.util.Hand
All Implemented Interfaces:
Serializable, Comparable<Hand>, Constable

public enum Hand extends Enum<Hand>
  • Enum Constant Details

    • MAIN_HAND

      public static final Hand MAIN_HAND
    • OFF_HAND

      public static final Hand OFF_HAND
  • Constructor Details

    • Hand

      private Hand()
  • Method Details

    • values

      public static Hand[] 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

      public static Hand valueOf(String name)
      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 name
      NullPointerException - if the argument is null