Package | Description |
---|---|
com.wewebu.expression.language | |
com.wewebu.expression.parser |
Modifier and Type | Class and Description |
---|---|
class |
OwExprArgumentsSuffix
An function arguments suffix of a primary expression.
In the expression function(2,3,'sss')
the (2,3,'sss') arguments will be parsed into an OwExprArgumentsSuffix . |
class |
OwExprArraySelectorSuffix
An array selector suffix of a primary expression.
In the expression property[2]
the [2] arguments will be parsed into an OwExprArraySelectorSuffix . |
class |
OwExprBinaryExpression
Binary expression implementation (a left-operand-operator-right-operand expression).
|
class |
OwExprBooleanLiteral
A fixed boolean value (one of
true of false ): true!=false |
class |
OwExprConditionalExpression
The short conditional expression parsing result :
1+b>a?'ok':'nok' 1+b>a is the test expression'ok' is the true expression'nok' is the false expression |
class |
OwExprDebugBracketsExpression
OwExprDebugBracketsExpression.
|
class |
OwExprFloatingPointLiteral
A fixed floating point value :
1.3211 . |
class |
OwExprIntegerLiteral
A fixed integer value :
32211 . |
class |
OwExprLiteral
An expression representing a fixed value (egg.
|
class |
OwExprNullLiteral
A fixed reserved word
null expression : a!=null |
class |
OwExprPrimaryPrefixExpression
OwExprPrimaryPrefixExpression.
|
class |
OwExprScopeSelector
OwExprScopeSelector.
|
class |
OwExprStaticArray
An expression representing a static array (inlined
array value like {1,2,3} ).
|
class |
OwExprStringLiteral
A fixed string value :
'I am a string' . |
class |
OwExprUnaryExpression
OwExprUnaryExpression.
|
class |
OwExprUnparsableExpression
OwExprUnparsableExpression.
|
Modifier and Type | Method and Description |
---|---|
OwExprExpression |
OwExprPrimaryPrefixExpression.asExpression(OwExprSymbolTable symbolTable_p) |
OwExprExpression |
OwExprScopeSelector.expression() |
OwExprExpression |
OwExprPrimaryPrefix.expression() |
OwExprExpression |
OwExprLiteral.expression() |
OwExprExpression |
OwExprPrimaryPrefixExpression.expression() |
OwExprExpression |
OwExprArgumentsSuffix.expression()
The prefix of this expression is forced to function.
|
OwExprExpression |
OwExprStaticArray.expression() |
OwExprExpression |
OwExprArraySelectorSuffix.expression() |
Modifier and Type | Method and Description |
---|---|
void |
OwExprStaticArray.add(OwExprExpression expression_p)
Parse time construction method.
|
OwExprUnaryExpressionType |
OwExprUnaryOperator.computeExpressionType(OwExprExpression operand_p)
Computes the resulted expression type based on given operand and regresses
sub-expression types accordingly
|
OwExprBinaryExpressionType |
OwExprBinaryOperator.computeExpressionType(OwExprExpression operand1_p,
OwExprExpression operand2_p)
Computes the resulted expression type based on given operands and regresses
sub-expression types accordingly
|
OwExprValue |
OwExprUnaryOperator.evaluate(OwExprScope scope_p,
OwExprExpression expression_p)
Unary evaluation method to be called at evaluation time.
|
Copyright © 2014 Alfresco Business Solutions. All Rights Reserved.