Record Class GameElement
java.lang.Object
java.lang.Record
frc.alotobots.library.subsystems.vision.photonvision.objectdetection.util.GameElement
- Record Components:
name- The name of the objectlength- The length of the objectwidth- The width of the objectheight- The height of the object (floor to middle)
Represents a game element (measurements are in meters)
-
Constructor Summary
ConstructorsConstructorDescriptionGameElement(String name, double length, double width, double height) Creates an instance of aGameElementrecord 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.doubleheight()Returns the value of theheightrecord component.doublelength()Returns the value of thelengthrecord component.name()Returns the value of thenamerecord component.final StringtoString()Returns a string representation of this record class.doublewidth()Returns the value of thewidthrecord component.
-
Constructor Details
-
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 '=='. -
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
length
public double length()Returns the value of thelengthrecord component.- Returns:
- the value of the
lengthrecord component
-
width
public double width()Returns the value of thewidthrecord component.- Returns:
- the value of the
widthrecord component
-
height
public double height()Returns the value of theheightrecord component.- Returns:
- the value of the
heightrecord component
-