Package org.opentrafficsim.base
Record Class TimeStampedObject<C>
java.lang.Object
java.lang.Record
org.opentrafficsim.base.TimeStampedObject<C>
- Type Parameters:
C
- the time stamped object class.- Record Components:
object
- C; the object.timestamp
- Time; the time stamp.
- All Implemented Interfaces:
Serializable
public record TimeStampedObject<C>(C object, org.djunits.value.vdouble.scalar.Time timestamp)
extends Record
implements Serializable
An object with a time stamp, where the object is of a specific class.
Copyright (c) 2013-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.
- Author:
- Alexander Verbraeck, Peter Knoppers
- See Also:
-
Constructor Summary
ConstructorDescriptionTimeStampedObject
(C object, org.djunits.value.vdouble.scalar.Time timestamp) Creates an instance of aTimeStampedObject
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.object()
Returns the value of theobject
record component.org.djunits.value.vdouble.scalar.Time
Returns the value of thetimestamp
record component.final String
toString()
Returns a string representation of this record class.
-
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. All components in this record class are compared withObjects::equals(Object,Object)
. -
object
Returns the value of theobject
record component.- Returns:
- the value of the
object
record component
-
timestamp
public org.djunits.value.vdouble.scalar.Time timestamp()Returns the value of thetimestamp
record component.- Returns:
- the value of the
timestamp
record component
-