Package | Description |
---|---|
org.epics.pvmanager |
|
org.epics.pvmanager.expression |
Interfaces for the expressions PVManager can consume.
|
org.epics.pvmanager.vtype |
Support for control system types.
|
Modifier and Type | Method and Description |
---|---|
static ChannelExpression<Object,Object> |
ExpressionLanguage.channel(String name)
A channel with the given name of any type.
|
static <R,W> ChannelExpression<R,W> |
ExpressionLanguage.channel(String name,
Class<R> readType,
Class<W> writeType)
A channel with the given name and type.
|
Modifier and Type | Method and Description |
---|---|
ChannelExpression<R,W> |
ChannelExpression.after(String... channelNames)
For writes only, marks that this channel should be written only after the
given channels.
|
Modifier and Type | Method and Description |
---|---|
static ChannelExpression<VByte,Byte> |
ExpressionLanguage.vByte(String name)
A channel with the given name of type VByte.
|
static ChannelExpression<VByteArray,org.epics.util.array.ArrayByte> |
ExpressionLanguage.vByteArray(String name)
A channel with the given name of type VByteArray.
|
static ChannelExpression<VDouble,Double> |
ExpressionLanguage.vDouble(String name)
A channel with the given name of type VDouble.
|
static ChannelExpression<VDoubleArray,org.epics.util.array.ArrayDouble> |
ExpressionLanguage.vDoubleArray(String name)
A channel with the given name of type VDoubleArray.
|
static ChannelExpression<VEnum,Integer> |
ExpressionLanguage.vEnum(String name)
A channel with the given name of type VEnum.
|
static ChannelExpression<VFloat,Float> |
ExpressionLanguage.vFloat(String name)
A channel with the given name of type VFloat.
|
static ChannelExpression<VFloatArray,org.epics.util.array.ArrayFloat> |
ExpressionLanguage.vFloatArray(String name)
A channel with the given name of type VFloatArray.
|
static ChannelExpression<VInt,Integer> |
ExpressionLanguage.vInt(String name)
A channel with the given name of type VInt.
|
static ChannelExpression<VIntArray,org.epics.util.array.ArrayInt> |
ExpressionLanguage.vIntArray(String name)
A channel with the given name of type VIntArray.
|
static ChannelExpression<VNumber,Number> |
ExpressionLanguage.vNumber(String name)
A channel with the given name of type VNumber.
|
static ChannelExpression<VNumberArray,org.epics.util.array.ListNumber> |
ExpressionLanguage.vNumberArray(String name)
A channel with the given name of type VNumberArray.
|
static ChannelExpression<VShort,Short> |
ExpressionLanguage.vShort(String name)
A channel with the given name of type VShort.
|
static ChannelExpression<VShortArray,org.epics.util.array.ArrayShort> |
ExpressionLanguage.vShortArray(String name)
A channel with the given name of type VShortArray.
|
static ChannelExpression<VString,String> |
ExpressionLanguage.vString(String name)
A channel with the given name of type VString.
|
static ChannelExpression<VStringArray,List<String>> |
ExpressionLanguage.vStringArray(String name)
A channel with the given name of type VStringArray.
|
static ChannelExpression<VType,Object> |
ExpressionLanguage.vType(String name)
A channel with the given name that returns any of the value types.
|
Copyright © 2010–2015. All rights reserved.