Enum Class NavigationDirection
- All Implemented Interfaces:
Serializable
,Comparable<NavigationDirection>
,Constable
- Mappings:
Namespace Name official esx
intermediary net/minecraft/class_8028
named net/minecraft/client/gui/navigation/NavigationDirection
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetAxis()
Returns the comparator that sorts the coordinates in ascending order.boolean
isAfter
(int a, int b) Returns whether the coordinatea
comes afterb
.boolean
isBefore
(int a, int b) Returns whether the coordinatea
comes beforeb
.boolean
static NavigationDirection
Returns the enum constant of this class with the specified name.static NavigationDirection[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UP
- Mappings:
Namespace Name Mixin selector official a
Lesx;a:Lesx;
intermediary field_41826
Lnet/minecraft/class_8028;field_41826:Lnet/minecraft/class_8028;
named UP
Lnet/minecraft/client/gui/navigation/NavigationDirection;UP:Lnet/minecraft/client/gui/navigation/NavigationDirection;
-
DOWN
- Mappings:
Namespace Name Mixin selector official b
Lesx;b:Lesx;
intermediary field_41827
Lnet/minecraft/class_8028;field_41827:Lnet/minecraft/class_8028;
named DOWN
Lnet/minecraft/client/gui/navigation/NavigationDirection;DOWN:Lnet/minecraft/client/gui/navigation/NavigationDirection;
-
LEFT
- Mappings:
Namespace Name Mixin selector official c
Lesx;c:Lesx;
intermediary field_41828
Lnet/minecraft/class_8028;field_41828:Lnet/minecraft/class_8028;
named LEFT
Lnet/minecraft/client/gui/navigation/NavigationDirection;LEFT:Lnet/minecraft/client/gui/navigation/NavigationDirection;
-
RIGHT
- Mappings:
Namespace Name Mixin selector official d
Lesx;d:Lesx;
intermediary field_41829
Lnet/minecraft/class_8028;field_41829:Lnet/minecraft/class_8028;
named RIGHT
Lnet/minecraft/client/gui/navigation/NavigationDirection;RIGHT:Lnet/minecraft/client/gui/navigation/NavigationDirection;
-
-
Field Details
-
comparator
- Mappings:
Namespace Name Mixin selector official e
Lesx;e:Lit/unimi/dsi/fastutil/ints/IntComparator;
intermediary field_41830
Lnet/minecraft/class_8028;field_41830:Lit/unimi/dsi/fastutil/ints/IntComparator;
named comparator
Lnet/minecraft/client/gui/navigation/NavigationDirection;comparator:Lit/unimi/dsi/fastutil/ints/IntComparator;
-
-
Constructor Details
-
NavigationDirection
private NavigationDirection()
-
-
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
-
getAxis
- Mappings:
Namespace Name Mixin selector official a
Lesx;a()Lesw;
intermediary method_48237
Lnet/minecraft/class_8028;method_48237()Lnet/minecraft/class_8027;
named getAxis
Lnet/minecraft/client/gui/navigation/NavigationDirection;getAxis()Lnet/minecraft/client/gui/navigation/NavigationAxis;
-
getOpposite
- Mappings:
Namespace Name Mixin selector official b
Lesx;b()Lesx;
intermediary method_48239
Lnet/minecraft/class_8028;method_48239()Lnet/minecraft/class_8028;
named getOpposite
Lnet/minecraft/client/gui/navigation/NavigationDirection;getOpposite()Lnet/minecraft/client/gui/navigation/NavigationDirection;
-
isPositive
public boolean isPositive()- Mappings:
Namespace Name Mixin selector official c
Lesx;c()Z
intermediary method_48241
Lnet/minecraft/class_8028;method_48241()Z
named isPositive
Lnet/minecraft/client/gui/navigation/NavigationDirection;isPositive()Z
-
isAfter
public boolean isAfter(int a, int b) Returns whether the coordinatea
comes afterb
.For example, if navigating downwards,
2
comes after1
, while the opposite is true if navigating upwards. This always returnsfalse
if two arguments are equal.- Returns:
- whether the coordinate
a
comes afterb
- See Also:
- Mappings:
Namespace Name Mixin selector official a
Lesx;a(II)Z
intermediary method_48238
Lnet/minecraft/class_8028;method_48238(II)Z
named isAfter
Lnet/minecraft/client/gui/navigation/NavigationDirection;isAfter(II)Z
-
isBefore
public boolean isBefore(int a, int b) Returns whether the coordinatea
comes beforeb
.For example, if navigating downwards,
1
comes before2
, while the opposite is true if navigating upwards. This always returnsfalse
if two arguments are equal.- Returns:
- whether the coordinate
a
comes beforeb
- See Also:
- Mappings:
Namespace Name Mixin selector official b
Lesx;b(II)Z
intermediary method_48240
Lnet/minecraft/class_8028;method_48240(II)Z
named isBefore
Lnet/minecraft/client/gui/navigation/NavigationDirection;isBefore(II)Z
-
getComparator
Returns the comparator that sorts the coordinates in ascending order.- Returns:
- the comparator that sorts the coordinates in ascending order
- Mappings:
Namespace Name Mixin selector official d
Lesx;d()Lit/unimi/dsi/fastutil/ints/IntComparator;
intermediary method_48243
Lnet/minecraft/class_8028;method_48243()Lit/unimi/dsi/fastutil/ints/IntComparator;
named getComparator
Lnet/minecraft/client/gui/navigation/NavigationDirection;getComparator()Lit/unimi/dsi/fastutil/ints/IntComparator;
-