Record Class ScreenRectangle
java.lang.Object
java.lang.Record
net.minecraft.client.gui.navigation.ScreenRectangle
-
Field Summary
Modifier and TypeFieldDescriptionprivate static final ScreenRectangle
private final int
The field for theheight
record component.private final ScreenPosition
The field for theposition
record component.private final int
The field for thewidth
record component. -
Constructor Summary
ConstructorDescriptionScreenRectangle
(int p_265721_, int p_265116_, int p_265225_, int p_265493_) ScreenRectangle
(ScreenPosition position, int width, int height) Creates an instance of aScreenRectangle
record class. -
Method Summary
Modifier and TypeMethodDescriptionint
bottom()
static ScreenRectangle
empty()
final boolean
Indicates whether some other object is "equal to" this one.getBorder
(ScreenDirection p_265704_) int
getBoundInDirection
(ScreenDirection p_265778_) int
getCenterInAxis
(ScreenAxis p_265694_) int
getLength
(ScreenAxis p_265463_) final int
hashCode()
Returns a hash code value for this object.int
height()
Returns the value of theheight
record component.intersection
(ScreenRectangle p_276058_) int
left()
static ScreenRectangle
of
(ScreenAxis p_265648_, int p_265317_, int p_265685_, int p_265218_, int p_265226_) boolean
overlaps
(ScreenRectangle p_265652_) boolean
overlapsInAxis
(ScreenRectangle p_265306_, ScreenAxis p_265340_) position()
Returns the value of theposition
record component.int
right()
step
(ScreenDirection p_265714_) int
top()
final String
toString()
Returns a string representation of this record class.int
width()
Returns the value of thewidth
record component.
-
Field Details
-
position
The field for theposition
record component. -
width
private final int widthThe field for thewidth
record component. -
height
private final int heightThe field for theheight
record component. -
EMPTY
-
-
Constructor Details
-
ScreenRectangle
public ScreenRectangle(int p_265721_, int p_265116_, int p_265225_, int p_265493_)
-
-
Method Details
-
empty
-
top
public int top() -
bottom
public int bottom() -
left
public int left() -
right
public int right() -
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 theposition
record component.- Returns:
- the value of the
position
record component
-
width
public int width()Returns the value of thewidth
record component.- Returns:
- the value of the
width
record component
-
height
public int height()Returns the value of theheight
record component.- Returns:
- the value of the
height
record component
-