Package net.minecraft.client.input
Enum Class CursorMovement
- All Implemented Interfaces:
- Serializable,- Comparable<CursorMovement>,- Constable
The types of cursor movement.
- Mappings:
- Namespace - Name - official - eqq- intermediary - net/minecraft/class_7533- named - net/minecraft/client/input/CursorMovement
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum Constants
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic CursorMovementReturns the enum constant of this class with the specified name.static CursorMovement[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
ABSOLUTECursor is moved using an absolute position.- Mappings:
- Namespace - Name - Mixin selector - official - a- Leqq;a:Leqq;- 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;
 
- 
RELATIVECursor is moved using a relative position.- Mappings:
- Namespace - Name - Mixin selector - official - b- Leqq;b:Leqq;- 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;
 
- 
ENDCursor is moved to the end of the text.- Mappings:
- Namespace - Name - Mixin selector - official - c- Leqq;c:Leqq;- 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- 
CursorMovementprivate CursorMovement()
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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
 
 
-