Record Class FocusedRect
java.lang.Object
java.lang.Record
net.minecraft.client.gui.navigation.FocusedRect
- Record Components:
position-width-height-
@Environment(CLIENT)
public record FocusedRect(FocusedPos position, int width, int height)
extends Record
A rectangle on the screen that is focused.
- Mappings:
Namespace Name official erlintermediary net/minecraft/class_8030named net/minecraft/client/gui/navigation/FocusedRectofficial aintermediary comp_1195named positionofficial bintermediary comp_1196named widthofficial cintermediary comp_1197named height
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final FocusedRectprivate final intThe field for theheightrecord component.private final FocusedPosThe field for thepositionrecord component.private final intThe field for thewidthrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionFocusedRect(int sameAxis, int otherAxis, int width, int height) FocusedRect(FocusedPos focusedPos, int int2, int int3) -
Method Summary
Modifier and TypeMethodDescriptionadd(NavigationDirection direction) Returns a new rect of the same dimensions with the position incremented.static FocusedRectempty()Returns an empty rect.final booleanIndicates whether some other object is "equal to" this one.getBorder(NavigationDirection direction) Returns a rect representing the border of this rect in the givendirection.intintgetBoundingCoordinate(NavigationDirection direction) Returns the coordinate of the bounding box in the givendirection.intgetCenter(NavigationAxis axis) Returns the center of this rect in the givenaxis.intgetLeft()intgetLength(NavigationAxis axis) Returns the length of the rect in the givenaxis.intgetRight()intgetTop()final inthashCode()Returns a hash code value for this object.intheight()Returns the value of theheightrecord component.method_49701(FocusedRect focusedRect) static FocusedRectof(NavigationAxis axis, int sameAxisCoord, int otherAxisCoord, int sameAxisLength, int otherAxisLength) Returns a new rect.booleanoverlaps(FocusedRect other) Returns whether this rect overlaps withrectin both axes.booleanoverlaps(FocusedRect other, NavigationAxis axis) Returns whether this rect overlaps withrectinaxis.position()Returns the value of thepositionrecord component.final StringtoString()Returns a string representation of this record class.intwidth()Returns the value of thewidthrecord component.
-
Field Details
-
position
The field for thepositionrecord component. -
width
private final int widthThe field for thewidthrecord component. -
height
private final int heightThe field for theheightrecord component. -
EMPTY
- Mappings:
Namespace Name Mixin selector official dLerl;d:Lerl;intermediary field_41835Lnet/minecraft/class_8030;field_41835:Lnet/minecraft/class_8030;named EMPTYLnet/minecraft/client/gui/navigation/FocusedRect;EMPTY:Lnet/minecraft/client/gui/navigation/FocusedRect;
-
-
Constructor Details
-
FocusedRect
public FocusedRect(int sameAxis, int otherAxis, int width, int height) - Mappings:
Namespace Name Mixin selector official <init>Lerl;<init>(IIII)Vintermediary <init>Lnet/minecraft/class_8030;<init>(IIII)Vnamed <init>Lnet/minecraft/client/gui/navigation/FocusedRect;<init>(IIII)V
-
-
Method Details
-
empty
Returns an empty rect.- Returns:
- an empty rect
- Mappings:
Namespace Name Mixin selector official aLerl;a()Lerl;intermediary method_48248Lnet/minecraft/class_8030;method_48248()Lnet/minecraft/class_8030;named emptyLnet/minecraft/client/gui/navigation/FocusedRect;empty()Lnet/minecraft/client/gui/navigation/FocusedRect;
-
getTop
public int getTop()- Mappings:
Namespace Name Mixin selector official bLerl;b()Iintermediary method_49618Lnet/minecraft/class_8030;method_49618()Inamed getTopLnet/minecraft/client/gui/navigation/FocusedRect;getTop()I
-
getBottom
public int getBottom()- Mappings:
Namespace Name Mixin selector official cLerl;c()Iintermediary method_49619Lnet/minecraft/class_8030;method_49619()Inamed getBottomLnet/minecraft/client/gui/navigation/FocusedRect;getBottom()I
-
getLeft
public int getLeft()- Mappings:
Namespace Name Mixin selector official dLerl;d()Iintermediary method_49620Lnet/minecraft/class_8030;method_49620()Inamed getLeftLnet/minecraft/client/gui/navigation/FocusedRect;getLeft()I
-
getRight
public int getRight()- Mappings:
Namespace Name Mixin selector official eLerl;e()Iintermediary method_49621Lnet/minecraft/class_8030;method_49621()Inamed getRightLnet/minecraft/client/gui/navigation/FocusedRect;getRight()I
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
position
Returns the value of thepositionrecord component.- Returns:
- the value of the
positionrecord component
-
width
public int width()Returns the value of thewidthrecord component.- Returns:
- the value of the
widthrecord component
-
height
public int height()Returns the value of theheightrecord component.- Returns:
- the value of the
heightrecord component
-