Package org.springframework.shell.geom
Record Class Rectangle
java.lang.Object
java.lang.Record
org.springframework.shell.geom.Rectangle
Record representing coordinates
x, y and its width
and height.-
Constructor Summary
ConstructorsConstructorDescriptionRectangle(int x, int y, int width, int height) Creates an instance of aRectanglerecord class. -
Method Summary
Modifier and TypeMethodDescriptionbooleancontains(int X, int Y) final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.intheight()Returns the value of theheightrecord component.booleanisEmpty()Determines whether theRectangleis empty.final StringtoString()Returns a string representation of this record class.intwidth()Returns the value of thewidthrecord component.intx()Returns the value of thexrecord component.inty()Returns the value of theyrecord component.
-
Constructor Details
-
Rectangle
public Rectangle(int x, int y, int width, int height) Creates an instance of aRectanglerecord class.- Parameters:
x- the value for thexrecord componenty- the value for theyrecord componentwidth- the value for thewidthrecord componentheight- the value for theheightrecord component
-
-
Method Details
-
contains
public boolean contains(int X, int Y) -
isEmpty
public boolean isEmpty()Determines whether theRectangleis empty. When theRectangleis empty, it encloses no area.- Returns:
trueif theRectangleis empty;falseotherwise.
-
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. All components in this record class are compared with '=='. -
x
public int x()Returns the value of thexrecord component.- Returns:
- the value of the
xrecord component
-
y
public int y()Returns the value of theyrecord component.- Returns:
- the value of the
yrecord 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
-