Package util
Record Class MazeGenerator.CellBoundary
java.lang.Object
java.lang.Record
util.MazeGenerator.CellBoundary
- Enclosing class:
MazeGenerator
private static record MazeGenerator.CellBoundary(MazeGenerator.Orientation orientation, int x, int y)
extends Record
Edges represent the boundaries of cells.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final MazeGenerator.OrientationThe field for theorientationrecord component.private final intThe field for thexrecord component.private final intThe field for theyrecord component. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateCellBoundary(MazeGenerator.Orientation orientation, int x, int y) Creates an instance of aCellBoundaryrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theorientationrecord component.final StringtoString()Returns a string representation of this record class.intx()Returns the value of thexrecord component.inty()Returns the value of theyrecord component.
-
Field Details
-
orientation
The field for theorientationrecord component. -
x
private final int xThe field for thexrecord component. -
y
private final int yThe field for theyrecord component.
-
-
Constructor Details
-
CellBoundary
Creates an instance of aCellBoundaryrecord class.- Parameters:
orientation- the value for theorientationrecord componentx- the value for thexrecord componenty- the value for theyrecord component
-
-
Method Details
-
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 '=='. -
orientation
Returns the value of theorientationrecord component.- Returns:
- the value of the
orientationrecord component
-
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
-