Record Class TimeSeriesPoint
java.lang.Object
java.lang.Record
org.praxisplatform.uischema.stats.dto.TimeSeriesPoint
public record TimeSeriesPoint(LocalDate start, LocalDate end, String label, Number value, long count, Map<String,Number> values)
extends Record
Point in a canonical time-series response.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionlongcount()Returns the value of thecountrecord component.end()Returns the value of theendrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.label()Returns the value of thelabelrecord component.start()Returns the value of thestartrecord component.final StringtoString()Returns a string representation of this record class.value()Returns the value of thevaluerecord component.values()Returns the value of thevaluesrecord component.
-
Constructor Details
-
TimeSeriesPoint
-
TimeSeriesPoint
public TimeSeriesPoint(LocalDate start, LocalDate end, String label, Number value, long count, Map<String, Number> values) Creates an instance of aTimeSeriesPointrecord class.- Parameters:
start- the value for thestartrecord componentend- the value for theendrecord componentlabel- the value for thelabelrecord componentvalue- the value for thevaluerecord componentcount- the value for thecountrecord componentvalues- the value for thevaluesrecord 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 '=='. -
start
Returns the value of thestartrecord component.- Returns:
- the value of the
startrecord component
-
end
Returns the value of theendrecord component.- Returns:
- the value of the
endrecord component
-
label
Returns the value of thelabelrecord component.- Returns:
- the value of the
labelrecord component
-
value
Returns the value of thevaluerecord component.- Returns:
- the value of the
valuerecord component
-
count
public long count()Returns the value of thecountrecord component.- Returns:
- the value of the
countrecord component
-
values
Returns the value of thevaluesrecord component.- Returns:
- the value of the
valuesrecord component
-