Enum Class CursorMovement

java.lang.Object
java.lang.Enum<CursorMovement>
net.minecraft.client.input.CursorMovement
All Implemented Interfaces:
Serializable, Comparable<CursorMovement>, Constable

@Environment(CLIENT) public enum CursorMovement extends Enum<CursorMovement>
The types of cursor movement.
Mappings:
Namespace Name
official emd
intermediary net/minecraft/class_7533
named net/minecraft/client/input/CursorMovement
  • Enum Constant Details

    • ABSOLUTE

      public static final CursorMovement ABSOLUTE
      Cursor is moved using an absolute position.
      Mappings:
      Namespace Name Mixin selector
      official a Lemd;a:Lemd;
      intermediary field_39535 Lnet/minecraft/class_7533;field_39535:Lnet/minecraft/class_7533;
      named ABSOLUTE Lnet/minecraft/client/input/CursorMovement;ABSOLUTE:Lnet/minecraft/client/input/CursorMovement;
    • RELATIVE

      public static final CursorMovement RELATIVE
      Cursor is moved using a relative position.
      Mappings:
      Namespace Name Mixin selector
      official b Lemd;b:Lemd;
      intermediary field_39536 Lnet/minecraft/class_7533;field_39536:Lnet/minecraft/class_7533;
      named RELATIVE Lnet/minecraft/client/input/CursorMovement;RELATIVE:Lnet/minecraft/client/input/CursorMovement;
    • END

      public static final CursorMovement END
      Cursor is moved to the end of the text.
      Mappings:
      Namespace Name Mixin selector
      official c Lemd;c:Lemd;
      intermediary field_39537 Lnet/minecraft/class_7533;field_39537:Lnet/minecraft/class_7533;
      named END Lnet/minecraft/client/input/CursorMovement;END:Lnet/minecraft/client/input/CursorMovement;
  • Constructor Details

    • CursorMovement

      private CursorMovement()
  • Method Details

    • values

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