Package com.framed.streamer.model
Record Class DataPoint<T>
java.lang.Object
java.lang.Record
com.framed.streamer.model.DataPoint<T>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thechannelIDrecord component.Returns the value of theclassNamerecord component.deviceID()Returns the value of thedeviceIDrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thetimestamprecord component.final StringtoString()Returns a string representation of this record class.value()Returns the value of thevaluerecord component.
-
Constructor Details
-
DataPoint
Creates an instance of aDataPointrecord class.- Parameters:
timestamp- the value for thetimestamprecord componentvalue- the value for thevaluerecord componentchannelID- the value for thechannelIDrecord componentdeviceID- the value for thedeviceIDrecord componentclassName- the value for theclassNamerecord component
-
-
Method Details
-
toJsonString
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
timestamp
Returns the value of thetimestamprecord component.- Returns:
- the value of the
timestamprecord component
-
value
Returns the value of thevaluerecord component.- Returns:
- the value of the
valuerecord component
-
channelID
Returns the value of thechannelIDrecord component.- Returns:
- the value of the
channelIDrecord component
-
deviceID
Returns the value of thedeviceIDrecord component.- Returns:
- the value of the
deviceIDrecord component
-
className
Returns the value of theclassNamerecord component.- Returns:
- the value of the
classNamerecord component
-