Uses of Interface
org.csstudio.data.values.ITimestamp

Packages that use ITimestamp
org.csstudio.data.values Control system data types: PV, Device, ... 
 

Uses of ITimestamp in org.csstudio.data.values
 

Methods in org.csstudio.data.values that return ITimestamp
static ITimestamp TimestampFactory.createTimestamp(long seconds, long nanoseconds)
          Creates a time stamp based on the specified seconds and nanoseconds.
static ITimestamp TimestampFactory.fromCalendar(java.util.Calendar calendar)
          Create a time stamp for the given Calendar.
static ITimestamp TimestampFactory.fromDouble(double seconds)
          Creates a time stamp based on the specified seconds.
static ITimestamp TimestampFactory.fromMillisecs(long millisecs)
          Create a time stamp for the given milliseconds since the epoch.
static ITimestamp TimestampFactory.fromSQLTimestamp(java.sql.Timestamp sql_time)
          Convert SQL Timestamp into CSS Timestamp.
 ITimestamp IValue.getTime()
          Get the time stamp.
static ITimestamp TimestampFactory.now()
          Creates a time stamp for the current system time.
 

Methods in org.csstudio.data.values with parameters of type ITimestamp
static IDoubleValue ValueFactory.createDoubleValue(ITimestamp time, ISeverity severity, java.lang.String status, INumericMetaData meta_data, IValue.Quality quality, double[] values)
          Create instance of IDoubleValue.
static IEnumeratedValue ValueFactory.createEnumeratedValue(ITimestamp time, ISeverity severity, java.lang.String status, IEnumeratedMetaData meta_data, IValue.Quality quality, int[] values)
          Create instance of IEnumeratedValue.
static ILongValue ValueFactory.createLongValue(ITimestamp time, ISeverity severity, java.lang.String status, INumericMetaData meta_data, IValue.Quality quality, long[] values)
          Create instance of ILongValue.
static IMinMaxDoubleValue ValueFactory.createMinMaxDoubleValue(ITimestamp time, ISeverity severity, java.lang.String status, INumericMetaData meta_data, IValue.Quality quality, double[] values, double minimum, double maximum)
          Create instance of IMinMaxDoubleValue.
static IStringValue ValueFactory.createStringValue(ITimestamp time, ISeverity severity, java.lang.String status, IValue.Quality quality, java.lang.String[] values)
          Create instance of IStringValue.
 boolean ITimestamp.isGreaterOrEqual(ITimestamp other)
           
 boolean ITimestamp.isGreaterThan(ITimestamp other)
           
 boolean ITimestamp.isLessOrEqual(ITimestamp other)
           
 boolean ITimestamp.isLessThan(ITimestamp other)