Uses of Interface
org.epics.pvmanager.expression.WriteExpression

Packages that use WriteExpression
org.epics.pvmanager

pvManager 

org.epics.pvmanager.expression Interfaces for the expressions PVManager can consume. 
 

Uses of WriteExpression in org.epics.pvmanager
 

Methods in org.epics.pvmanager that return WriteExpression
static
<T> WriteExpression<java.util.Map<java.lang.String,T>>
ExpressionLanguage.mapOf(WriteExpressionList<T> expressions)
          Converts a list of expressions to an expression that returns the map from the name to the results.
 

Methods in org.epics.pvmanager with parameters of type WriteExpression
static
<T> PVWriterConfiguration<T>
PVManager.write(WriteExpression<T> writeExpression)
          Writes the given expression, and returns an object to configure the parameters for the write.
 

Uses of WriteExpression in org.epics.pvmanager.expression
 

Subinterfaces of WriteExpression in org.epics.pvmanager.expression
 interface DesiredRateReadWriteExpression<R,W>
          An expression to write and to read at the desired rate.
 interface SourceRateReadWriteExpression<R,W>
          An expression to write and to read at the rate of the source.
 

Classes in org.epics.pvmanager.expression that implement WriteExpression
 class ChannelExpression<R,W>
          Represents a channel, which can be both read or written.
 class DesiredRateReadWriteExpressionImpl<R,W>
          Implementation class for DesiredRateReadWriteExpression.
 class SourceRateReadWriteExpressionImpl<R,W>
          Implementation class for SourceRateReadWriteExpression.
 class WriteExpressionImpl<W>
          Implementation class for WriteExpression.
 

Methods in org.epics.pvmanager.expression that return WriteExpression
 WriteExpression<W> WriteExpressionImpl.as(java.lang.String name)
          Changes the name for this expression
 

Methods in org.epics.pvmanager.expression that return types with arguments of type WriteExpression
 java.util.List<WriteExpression<W>> DesiredRateReadWriteExpressionListImpl.getWriteExpressions()
           
 java.util.List<WriteExpression<W>> SourceRateReadWriteExpressionListImpl.getWriteExpressions()
           
 java.util.List<WriteExpression<W>> WriteExpressionList.getWriteExpressions()
          The expressions of this list.
 java.util.List<WriteExpression<W>> WriteExpressionListImpl.getWriteExpressions()
           
 

Constructors in org.epics.pvmanager.expression with parameters of type WriteExpression
DesiredRateReadWriteExpressionImpl(DesiredRateExpression<R> desiredRateExpression, WriteExpression<W> writeExpression)
          Creates an expression that can be both read at the desired rate and written.
SourceRateReadWriteExpressionImpl(SourceRateExpression<R> sourceRateExpression, WriteExpression<W> writeExpression)
          Creates an expression that can be both read and written.