Package com.framed.io.dispatch
Record Class DataPoint<T>
java.lang.Object
java.lang.Record
com.framed.io.dispatch.DataPoint<T>
- Type Parameters:
T- the type of the carried value- Record Components:
timestamp- the instant the value was observedvalue- the observed valuechannelID- the identifier of the channel that produced the valuedeviceID- the identifier of the device that produced the valueclassName- the runtime class name describing the value's type
public record DataPoint<T>(Instant timestamp, T value, String channelID, String deviceID, String className)
extends Record
An immutable, timestamped value sample produced by a device channel.
-
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.Serializes this datapoint to its JSON string representation.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.
-
-
Method Details
-
toJsonString
Serializes this datapoint to its JSON string representation.- Returns:
- a JSON string with
timestamp,value,channelID,deviceIDandclassNamefields
-
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
-
