Record Class ScreenRectangle
java.lang.Object
java.lang.Record
net.minecraft.client.gui.navigation.ScreenRectangle
-
Field Summary
FieldsModifier 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
ConstructorsConstructorDescriptionScreenRectangle
(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()
boolean
containsPoint
(int x, int y) static ScreenRectangle
empty()
final boolean
Indicates whether some other object is "equal to" this one.getBorder
(ScreenDirection direction) int
getBoundInDirection
(ScreenDirection direction) int
getCenterInAxis
(ScreenAxis axis) int
getLength
(ScreenAxis axis) final int
hashCode()
Returns a hash code value for this object.int
height()
Returns the value of theheight
record component.intersection
(ScreenRectangle rectangle) int
left()
static ScreenRectangle
of
(ScreenAxis axis, int primaryPosition, int secondaryPosition, int primaryLength, int secondaryLength) boolean
overlaps
(ScreenRectangle rectangle) boolean
overlapsInAxis
(ScreenRectangle rectangle, ScreenAxis axis) position()
Returns the value of theposition
record component.int
right()
step
(ScreenDirection direction) 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() -
containsPoint
public boolean containsPoint(int x, int y) -
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
-