Packageorg.spicefactory.lib.expr
Interfacepublic interface Expression
ImplementorsCompositeExpression, DefaultExpressionContext, LiteralExpression, ValueExpression

Represents a single expression. Expressions are String values that may contain dynamic values surrounded by ${...} which will be resolved by VariableResolver and/or PropertyResolver instances. Example: "The person must be at least ${config.minAge} years old."



Public Properties
 PropertyDefined by
  expressionString : String
[read-only] The unresolved expression string.
Expression
  value : *
[read-only] The fully resolved value of this expression.
Expression
Property detail
expressionStringproperty
expressionString:String  [read-only]

The unresolved expression string.

Implementation
    public function get expressionString():String
valueproperty 
value:*  [read-only]

The fully resolved value of this expression.

Implementation
    public function get value():*