Record Class ProfileSeries
java.lang.Object
java.lang.Record
com.knezevic.edaf.v3.persistence.query.ProfileSeries
Named profile series for chart rendering.
-
Constructor Summary
ConstructorsConstructorDescriptionProfileSeries(String name, List<ProfilePoint> points) Creates an instance of aProfileSeriesrecord 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.name()Returns the value of thenamerecord component.points()Returns the value of thepointsrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ProfileSeries
Creates an instance of aProfileSeriesrecord class.- Parameters:
name- the value for thenamerecord componentpoints- the value for thepointsrecord component
-
-
Method Details
-
toString
-
hashCode
-
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 withObjects::equals(Object,Object). -
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
points
Returns the value of thepointsrecord component.- Returns:
- the value of the
pointsrecord component
-