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
ConstructorDescriptionGameElement
(String name, double length, double width, double height) Creates an instance of aGameElement
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.double
height()
Returns the value of theheight
record component.double
length()
Returns the value of thelength
record component.name()
Returns the value of thename
record component.final String
toString()
Returns a string representation of this record class.double
width()
Returns the value of thewidth
record 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 thename
record component.- Returns:
- the value of the
name
record component
-
length
public double length()Returns the value of thelength
record component.- Returns:
- the value of the
length
record component
-
width
public double width()Returns the value of thewidth
record component.- Returns:
- the value of the
width
record component
-
height
public double height()Returns the value of theheight
record component.- Returns:
- the value of the
height
record component
-