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>
An enum representing an entity's hand.

If the entity is right-handed, MAIN_HAND is of Arm.RIGHT, and if the entity is left-handed, MAIN_HAND is of Arm.LEFT,

Mappings:
Namespace Name
official bcl
intermediary net/minecraft/class_1268
named net/minecraft/util/Hand
  • Enum Constant Details

    • MAIN_HAND

      public static final Hand MAIN_HAND
      Mappings:
      Namespace Name Mixin selector
      official a Lbcl;a:Lbcl;
      intermediary field_5808 Lnet/minecraft/class_1268;field_5808:Lnet/minecraft/class_1268;
      named MAIN_HAND Lnet/minecraft/util/Hand;MAIN_HAND:Lnet/minecraft/util/Hand;
    • OFF_HAND

      public static final Hand OFF_HAND
      Mappings:
      Namespace Name Mixin selector
      official b Lbcl;b:Lbcl;
      intermediary field_5810 Lnet/minecraft/class_1268;field_5810:Lnet/minecraft/class_1268;
      named OFF_HAND Lnet/minecraft/util/Hand;OFF_HAND:Lnet/minecraft/util/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