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

Packages that use WriteExpressionList
org.epics.pvmanager

pvManager 

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

Uses of WriteExpressionList in org.epics.pvmanager
 

Methods in org.epics.pvmanager with parameters of type WriteExpressionList
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.
 

Uses of WriteExpressionList in org.epics.pvmanager.expression
 

Subinterfaces of WriteExpressionList in org.epics.pvmanager.expression
 interface DesiredRateReadWriteExpression<R,W>
          An expression to write and to read at the desired rate.
 interface DesiredRateReadWriteExpressionList<R,W>
          An list of expressions 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.
 interface SourceRateReadWriteExpressionList<R,W>
          A list of expressions to write and to read at the rate of the source.
 interface WriteExpression<W>
          An expression to write.
 

Classes in org.epics.pvmanager.expression that implement WriteExpressionList
 class ChannelExpression<R,W>
          Represents a channel, which can be both read or written.
 class ChannelExpressionList<R,W>
          Represents a list of channel, which can be both read or written.
 class DesiredRateReadWriteExpressionImpl<R,W>
          Implementation class for DesiredRateReadWriteExpression.
 class DesiredRateReadWriteExpressionListImpl<R,W>
          Implementation class for DesiredRateReadWriteExpressionList.
 class SourceRateReadWriteExpressionImpl<R,W>
          Implementation class for SourceRateReadWriteExpression.
 class SourceRateReadWriteExpressionListImpl<R,W>
          Implementation class for SourceRateReadWriteExpressionList.
 class WriteExpressionImpl<W>
          Implementation class for WriteExpression.
 class WriteExpressionListImpl<W>
          Implementation class for WriteExpressionList.
 

Methods in org.epics.pvmanager.expression that return WriteExpressionList
 WriteExpressionList<W> DesiredRateReadWriteExpressionListImpl.and(WriteExpressionList<? extends W> expressions)
           
 WriteExpressionList<W> SourceRateReadWriteExpressionListImpl.and(WriteExpressionList<? extends W> expressions)
           
 WriteExpressionList<W> WriteExpressionList.and(WriteExpressionList<? extends W> expressions)
          Adds the given expressions to this list.
 

Methods in org.epics.pvmanager.expression with parameters of type WriteExpressionList
 WriteExpressionList<W> DesiredRateReadWriteExpressionListImpl.and(WriteExpressionList<? extends W> expressions)
           
 WriteExpressionList<W> SourceRateReadWriteExpressionListImpl.and(WriteExpressionList<? extends W> expressions)
           
 WriteExpressionList<W> WriteExpressionList.and(WriteExpressionList<? extends W> expressions)
          Adds the given expressions to this list.
 WriteExpressionListImpl<W> WriteExpressionListImpl.and(WriteExpressionList<? extends W> expressions)
           
 

Constructors in org.epics.pvmanager.expression with parameters of type WriteExpressionList
WriteExpressionImpl(WriteExpressionList<?> childExpressions, WriteFunction<W> function, java.lang.String defaultName)
          Creates a new write expression.