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

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

Uses of Display in org.epics.pvmanager.data
 

Subinterfaces of Display 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 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 VMultiInt
           
 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.
 

Methods in org.epics.pvmanager.data that return Display
 Display DisplayBuilder.build()
           
static Display ValueFactory.displayNone()
          Empty display information.
static Display ValueUtil.displayOf(java.lang.Object obj)
          Extracts the display information if present.
static Display ValueFactory.newDisplay(java.lang.Double lowerDisplayLimit, java.lang.Double lowerAlarmLimit, java.lang.Double lowerWarningLimit, java.lang.String units, java.text.NumberFormat numberFormat, java.lang.Double upperWarningLimit, java.lang.Double upperAlarmLimit, java.lang.Double upperDisplayLimit, java.lang.Double lowerCtrlLimit, java.lang.Double upperCtrlLimit)
          Creates a new display
 

Methods in org.epics.pvmanager.data with parameters of type Display
static Alarm ValueFactory.newAlarm(java.lang.Number value, Display display)
          Alarm based on the value and the display ranges.
static VDouble ValueFactory.newVDouble(java.lang.Double value, AlarmSeverity alarmSeverity, AlarmStatus alarmStatus, java.lang.Integer timeUserTag, TimeStamp timeStamp, Display display)
          Deprecated.  
static VDouble ValueFactory.newVDouble(java.lang.Double value, Alarm alarm, Time time, Display display)
          Creates a new VDouble.
static VDouble ValueFactory.newVDouble(double value, Display display)
          Deprecated.  
static VDouble ValueFactory.newVDouble(java.lang.Double value, Display display)
          Creates new immutable VDouble by using metadata from the old value, now as timestamp and computing alarm from the metadata range.
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 VDouble ValueFactory.newVDouble(double value, TimeStamp timeStamp, Display display)
          Deprecated.  
static VDoubleArray ValueFactory.newVDoubleArray(double[] values, Alarm alarm, Time time, Display display)
          Creates a new VDoubleArray.
static VDoubleArray ValueFactory.newVDoubleArray(double[] values, 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, 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 java.lang.Double ValueUtil.normalize(java.lang.Number value, Display display)
          Normalizes the given value according to the given display information.
 

Uses of Display in org.epics.pvmanager.extra
 

Methods in org.epics.pvmanager.extra that return Display
 Display DoubleArrayTimeCache.getDisplay()
           
 Display DoubleArrayTimeCacheFromVDoubleArray.getDisplay()
           
 Display DoubleArrayTimeCacheFromVDoubles.getDisplay()
           
 

Methods in org.epics.pvmanager.extra with parameters of type Display
abstract  int ColorScheme.color(double value, Display ranges)
          Calculate the color for the value according to the ranges and puts it into the colors buffer.