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

Packages that use DesiredRateExpressionList
org.epics.pvmanager

pvManager 

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

Uses of DesiredRateExpressionList in org.epics.pvmanager
 

Methods in org.epics.pvmanager that return DesiredRateExpressionList
static
<T> DesiredRateExpressionList<T>
ExpressionLanguage.latestValueOf(SourceRateExpressionList<T> expressions)
          Expression that returns (only) the latest value computed from a SourceRateExpression.
static
<T> DesiredRateExpressionList<java.util.List<T>>
ExpressionLanguage.newValuesOf(SourceRateExpressionList<T> expressions)
          Returns all the new values generated by the expression source rate.
 

Methods in org.epics.pvmanager with parameters of type DesiredRateExpressionList
static
<T> DesiredRateExpression<java.util.List<T>>
ExpressionLanguage.listOf(DesiredRateExpressionList<T> expressions)
          Converts a list of expressions to an expression that returns the list of results.
static
<T> DesiredRateExpression<java.util.Map<java.lang.String,T>>
ExpressionLanguage.mapOf(DesiredRateExpressionList<T> expressions)
          Converts a list of expressions to an expression that returns the map from the name to the results.
 

Uses of DesiredRateExpressionList in org.epics.pvmanager.data
 

Methods in org.epics.pvmanager.data that return DesiredRateExpressionList
static DesiredRateExpressionList<VStatistics> ExpressionLanguage.statisticsOf(SourceRateExpressionList<VDouble> doubleExpressions)
          Applies ExpressionLanguage.statisticsOf(org.epics.pvmanager.expression.SourceRateExpression) to all arguments.
static DesiredRateExpressionList<VDouble> ExpressionLanguage.vDoubleConstants(java.util.List<java.lang.Double> values)
          A list of constant expressions of type VDouble.
static DesiredRateExpressionList<VInt> ExpressionLanguage.vIntConstants(java.util.List<java.lang.Integer> values)
          A list of constant expressions of type VDouble.
static DesiredRateExpressionList<VString> ExpressionLanguage.vStringConstants(java.util.List<java.lang.String> values)
          A list of constant expressions of type VString.
 

Methods in org.epics.pvmanager.data with parameters of type DesiredRateExpressionList
static VTableColumn ExpressionLanguage.column(java.lang.String name, DesiredRateExpressionList<?> values)
          A column for an aggregated vTable.
static DesiredRateExpression<VDoubleArray> ExpressionLanguage.vDoubleArrayOf(DesiredRateExpressionList<? extends VNumber> expressions)
          Transforms a list of numeric scalar into a double array.
 

Uses of DesiredRateExpressionList in org.epics.pvmanager.expression
 

Subinterfaces of DesiredRateExpressionList in org.epics.pvmanager.expression
 interface DesiredRateExpression<R>
          An expression to read at the desired rate.
 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.
 

Classes in org.epics.pvmanager.expression that implement DesiredRateExpressionList
 class DesiredRateExpressionImpl<R>
          Implementation class for DesiredRateExpression.
 class DesiredRateExpressionListImpl<R>
          Implementation class for DesiredRateExpressionList.
 class DesiredRateReadWriteExpressionImpl<R,W>
          Implementation class for DesiredRateReadWriteExpression.
 class DesiredRateReadWriteExpressionListImpl<R,W>
          Implementation class for DesiredRateReadWriteExpressionList.
 

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

Methods in org.epics.pvmanager.expression with parameters of type DesiredRateExpressionList
 DesiredRateExpressionList<R> DesiredRateExpressionList.and(DesiredRateExpressionList<? extends R> expressions)
          Adds the given expressions to this list.
 DesiredRateExpressionListImpl<R> DesiredRateExpressionListImpl.and(DesiredRateExpressionList<? extends R> expressions)
           
 DesiredRateExpressionList<R> DesiredRateReadWriteExpressionListImpl.and(DesiredRateExpressionList<? extends R> expressions)
           
static java.util.List<Function<?>> Expressions.functionsOf(DesiredRateExpressionList<?> list)
          Extract the list of functions from an expression list.
 

Constructors in org.epics.pvmanager.expression with parameters of type DesiredRateExpressionList
DesiredRateExpressionImpl(DesiredRateExpressionList<?> childExpressions, Function<R> function, java.lang.String defaultName)
          Creates a new aggregated expression.
 

Uses of DesiredRateExpressionList in org.epics.pvmanager.extra
 

Classes in org.epics.pvmanager.extra that implement DesiredRateExpressionList
 class DynamicGroup
          A expression that returns the result of a dynamically managed group.
 class WaterfallPlot
          A waterfall plot.