Class TimeStampedObject<C>

java.lang.Object
org.opentrafficsim.base.TimeStampedObject<C>
Type Parameters:
C - the time stamped object class.
All Implemented Interfaces:
java.io.Serializable

public class TimeStampedObject<C>
extends java.lang.Object
implements java.io.Serializable
An object with a time stamp, where the object is of a specific class.

Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.

$LastChangedDate: 2015-07-24 02:58:59 +0200 (Fri, 24 Jul 2015) $, @version $Revision: 1147 $, by $Author: averbraeck $, initial version Jan 29, 2016
Author:
Alexander Verbraeck, Peter Knoppers
See Also:
Serialized Form
  • Constructor Summary

    Constructors 
    Constructor Description
    TimeStampedObject​(C object, Time timestamp)
    Construct a new TimeStampedObject.
  • Method Summary

    Modifier and Type Method Description
    C getObject()
    Retrieve the object.
    Time getTimestamp()
    Retrieve the time stamp.
    java.lang.String toString()

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • TimeStampedObject

      public TimeStampedObject​(C object, Time timestamp)
      Construct a new TimeStampedObject.
      Parameters:
      object - C; the object.
      timestamp - Time; the time stamp.
  • Method Details

    • getObject

      public final C getObject()
      Retrieve the object.
      Returns:
      C; the object
    • getTimestamp

      public final Time getTimestamp()
      Retrieve the time stamp.
      Returns:
      Time; the time stamp
    • toString

      public final java.lang.String toString()
      Overrides:
      toString in class java.lang.Object