Uses of Class
org.epics.pvmanager.expression.ChannelExpression

Packages that use ChannelExpression
org.epics.pvmanager

pvManager 

org.epics.pvmanager.data Support for control system types. 
org.epics.pvmanager.expression Interfaces for the expressions PVManager can consume. 
 

Uses of ChannelExpression in org.epics.pvmanager
 

Methods in org.epics.pvmanager that return ChannelExpression
static ChannelExpression<java.lang.Object,java.lang.Object> ExpressionLanguage.channel(java.lang.String name)
          A channel with the given name of any type.
static
<R,W> ChannelExpression<R,W>
ExpressionLanguage.channel(java.lang.String name, java.lang.Class<R> readType, java.lang.Class<W> writeType)
          A channel with the given name and type.
 

Uses of ChannelExpression in org.epics.pvmanager.data
 

Methods in org.epics.pvmanager.data that return ChannelExpression
static ChannelExpression<VByteArray,byte[]> ExpressionLanguage.vByteArray(java.lang.String name)
          A channel with the given name of type VByteArray.
static ChannelExpression<VDouble,java.lang.Double> ExpressionLanguage.vDouble(java.lang.String name)
          A channel with the given name of type VDouble.
static ChannelExpression<VDoubleArray,float[]> ExpressionLanguage.vDoubleArray(java.lang.String name)
          A channel with the given name of type VDoubleArray.
static ChannelExpression<VEnum,java.lang.Integer> ExpressionLanguage.vEnum(java.lang.String name)
          A channel with the given name of type VEnum.
static ChannelExpression<VFloatArray,float[]> ExpressionLanguage.vFloatArray(java.lang.String name)
          A channel with the given name of type VFloatArray.
static ChannelExpression<VInt,java.lang.Integer> ExpressionLanguage.vInt(java.lang.String name)
          A channel with the given name of type VInt.
static ChannelExpression<VIntArray,int[]> ExpressionLanguage.vIntArray(java.lang.String name)
          A channel with the given name of type VIntArray.
static ChannelExpression<VNumber,java.lang.Number> ExpressionLanguage.vNumber(java.lang.String name)
          A channel with the given name of type VNumber.
static ChannelExpression<VNumberArray,ListNumber> ExpressionLanguage.vNumberArray(java.lang.String name)
          A channel with the given name of type VNumberArray.
static ChannelExpression<VShortArray,short[]> ExpressionLanguage.vShortArray(java.lang.String name)
          A channel with the given name of type VShortArray.
static ChannelExpression<VString,java.lang.String> ExpressionLanguage.vString(java.lang.String name)
          A channel with the given name of type VString.
static ChannelExpression<VStringArray,java.lang.String[]> ExpressionLanguage.vStringArray(java.lang.String name)
          A channel with the given name of type VStringArray.
static ChannelExpression<VType,java.lang.Object> ExpressionLanguage.vType(java.lang.String name)
          A channel with the given name that returns any of the value type.
 

Uses of ChannelExpression in org.epics.pvmanager.expression
 

Methods in org.epics.pvmanager.expression that return ChannelExpression
 ChannelExpression<R,W> ChannelExpression.after(java.lang.String... channelNames)
          For writes only, marks that this channel should be written only after the given channels.