Package baritone.api.utils.input
Enum Class Input
- All Implemented Interfaces:
Serializable,Comparable<Input>,Constable
An
Enum representing the inputs that control the player's
behavior. This includes moving, interacting with blocks, jumping,
sneaking, and sprinting.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe attack inputThe use item inputThe jump inputThe move back inputThe move forward inputThe move left inputThe move right inputThe sneak inputThe sprint input -
Method Summary
-
Enum Constant Details
-
MOVE_FORWARD
The move forward input -
MOVE_BACK
The move back input -
MOVE_LEFT
The move left input -
MOVE_RIGHT
The move right input -
CLICK_LEFT
The attack input -
CLICK_RIGHT
The use item input -
JUMP
The jump input -
SNEAK
The sneak input -
SPRINT
The sprint input
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-