Record Class ScreenRectangle
java.lang.Object
java.lang.Record
net.minecraft.client.gui.navigation.ScreenRectangle
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate static final ScreenRectangleprivate final intThe field for theheightrecord component.private final ScreenPositionThe field for thepositionrecord component.private final intThe field for thewidthrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionScreenRectangle(int p_265721_, int p_265116_, int p_265225_, int p_265493_) ScreenRectangle(ScreenPosition position, int width, int height) Creates an instance of aScreenRectanglerecord class.
- 
Method SummaryModifier and TypeMethodDescriptionintbottom()static ScreenRectangleempty()final booleanIndicates whether some other object is "equal to" this one.getBorder(ScreenDirection p_265704_) intgetBoundInDirection(ScreenDirection p_265778_) intgetCenterInAxis(ScreenAxis p_265694_) intgetLength(ScreenAxis p_265463_) final inthashCode()Returns a hash code value for this object.intheight()Returns the value of theheightrecord component.intersection(ScreenRectangle p_276058_) intleft()static ScreenRectangleof(ScreenAxis p_265648_, int p_265317_, int p_265685_, int p_265218_, int p_265226_) booleanoverlaps(ScreenRectangle p_265652_) booleanoverlapsInAxis(ScreenRectangle p_265306_, ScreenAxis p_265340_) position()Returns the value of thepositionrecord component.intright()step(ScreenDirection p_265714_) inttop()final StringtoString()Returns a string representation of this record class.intwidth()Returns the value of thewidthrecord component.
- 
Field Details- 
positionThe field for thepositionrecord component.
- 
widthprivate final int widthThe field for thewidthrecord component.
- 
heightprivate final int heightThe field for theheightrecord component.
- 
EMPTY
 
- 
- 
Constructor Details- 
ScreenRectanglepublic ScreenRectangle(int p_265721_, int p_265116_, int p_265225_, int p_265493_) 
 
- 
- 
Method Details- 
empty
- 
toppublic int top()
- 
bottompublic int bottom()
- 
leftpublic int left()
- 
rightpublic int right()
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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 '=='.
- 
positionReturns the value of thepositionrecord component.- Returns:
- the value of the positionrecord component
 
- 
widthpublic int width()Returns the value of thewidthrecord component.- Returns:
- the value of the widthrecord component
 
- 
heightpublic int height()Returns the value of theheightrecord component.- Returns:
- the value of the heightrecord component
 
 
-