Uses of Interface
org.epics.pvmanager.data.Time

Packages that use Time
org.epics.pvmanager.data Support for control system types. 
 

Uses of Time in org.epics.pvmanager.data
 

Subinterfaces of Time in org.epics.pvmanager.data
 interface VByteArray
          Byte array with alarm, timestamp, display and control information.
 interface VDouble
          Scalar double with alarm, timestamp, display and control information.
 interface VDoubleArray
          Double array with alarm, timestamp, display and control information.
 interface VEnum
          Scalar enum with alarm and timestamp.
 interface VEnumArray
           
 interface VFloatArray
          Float array with alarm, timestamp, display and control information.
 interface VInt
          Scalar integer with alarm, timestamp, display and control information.
 interface VIntArray
          Int array with alarm, timestamp, display and control information.
 interface VMultiDouble
          Multi channel array of VDouble.
 interface VMultiEnum
           
 interface VMultiInt
           
 interface VMultiString
           
 interface VNumber
          Scalar number with alarm, timestamp, display and control information.
 interface VNumberArray
          Numeric array with alarm, timestamp, display and control information.
 interface VShortArray
          Short array with alarm, timestamp, display and control information.
 interface VStatistics
          Statistics for double with alarm, timestamp and display information.
 interface VString
          Scalar string with alarm and timestamp.
 interface VStringArray
           
 

Methods in org.epics.pvmanager.data with type parameters of type Time
static
<T extends Time>
java.util.Comparator<T>
ValueUtil.timeComparator()
          Returns a comparator with the order defined by the timestamp.
 

Methods in org.epics.pvmanager.data that return Time
static Time ValueFactory.newTime(Timestamp timestamp)
          New time, with no user tag and valid data.
static Time ValueFactory.newTime(Timestamp timestamp, java.lang.Integer timeUserTag, boolean timeValid)
          Creates a new time.
static Time ValueFactory.timeNow()
          New time with the current timestamp, no user tag and valid data.
static Time ValueUtil.timeOf(java.lang.Object obj)
          Extracts the time information if present.
 

Methods in org.epics.pvmanager.data with parameters of type Time
static VDouble ValueFactory.newVDouble(java.lang.Double value, Alarm alarm, Time time, Display display)
          Creates a new VDouble.
static VDouble ValueFactory.newVDouble(java.lang.Double value, Time time)
          Creates a new VDouble, no alarm, no display.
static VDouble ValueFactory.newVDouble(java.lang.Double value, Time time, Display display)
          Creates a new VDouble using the given value, time, display and generating the alarm from the value and display information.
static VDoubleArray ValueFactory.newVDoubleArray(double[] values, Alarm alarm, Time time, Display display)
          Creates a new VDoubleArray.
static VDoubleArray ValueFactory.newVDoubleArray(double[] values, java.util.List<java.lang.Integer> sizes, Alarm alarm, Time time, Display display)
          Creates a new VDoubleArray.
static VDoubleArray ValueFactory.newVDoubleArray(ListDouble data, Alarm alarm, Time time, Display display)
          Creates a new VDoubleArray.
static VInt ValueFactory.newVInt(java.lang.Integer value, Alarm alarm, Time time, Display display)
          Creates a new VInt.
static VIntArray ValueFactory.newVIntArray(int[] values, Alarm alarm, Time time, Display display)
           
static VIntArray ValueFactory.newVIntArray(int[] values, java.util.List<java.lang.Integer> sizes, Alarm alarm, Time time, Display display)
           
static VIntArray ValueFactory.newVIntArray(ListInt values, Alarm alarm, Time time, Display display)
           
static VMultiDouble ValueFactory.newVMultiDouble(java.util.List<VDouble> values, Alarm alarm, Time time, Display display)
          Creates a new VMultiDouble.
static VStatistics ValueFactory.newVStatistics(double average, double stdDev, double min, double max, int nSamples, Alarm alarm, Time time, Display display)
          Creates a new VStatistics.
static VString ValueFactory.newVString(java.lang.String value, Alarm alarm, Time time)
          Creates a new VString.