| Modifier and Type | Class and Description |
|---|---|
class |
AddExpression
This is the expression to perform addition.
|
class |
ArrayIndexExpression
This is the class expression to manipulate the indexed value from the array.
|
class |
DivideExpression
This is the class expression which performs the divide operations.
|
class |
MultiplyExpression
This class expression performs the multiplication ioperations.
|
class |
RemainderExpression
This class expression performs the modulus on integer values.
|
class |
SubtractExpression
This class expression performs the subtraction
|
| Modifier and Type | Class and Description |
|---|---|
class |
BWAndExpression
Implementation of Bit wise And Operator (&)
It does not supports for double operands
|
class |
BWOrExpression
Implementation of Bit wise OR Operator (|)
It does not supports for double operands
|
class |
BWSignedLeftShiftExpression
Implementation of Bit wise Singed Left Shift Operator (<<)
It does not work for double operands
|
class |
BWSignedRightShiftExpression
Implementation of Bit wise Right Shift Operator (>>)
It does not supports for double operands
|
class |
BWUnsignedRightShiftExpression
Implementation of Bit wise Unsigned Right Shift Operator (>>>)
It does not supports for double operands
|
class |
BWXorExpression
Implementation of Bit wise Exclusive OR Operator (^)
It does not supports for double operands
|
| Modifier and Type | Class and Description |
|---|---|
class |
AndExpression
This is the expression class for AND operatiorn.
|
class |
ConditionTernaryExpression
This expression manage the '?' operator of ternary expression,
more specifically condition part of the ternary operator.
|
class |
OrExpression
This class expression performs the or operation.
|
class |
ResultTernaryExpression
This expression manage the ':' operator of ternary expression,
more specifically result part of the ternary operator.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ArgumentExpression
This is the argument expression used by the function expression.
|
class |
PropertyExpression
This is the property expression to access the property of any java object.
|
| Modifier and Type | Class and Description |
|---|---|
class |
EQExpression
This class expression performs the equal operation on values.
|
class |
GTEExpression
Performs the greater than equal operations.
|
class |
GTExpression
Performs the greater than operation.
|
class |
LTEExpression
Performs the less than equal to operation
|
class |
LTExpression
Performs the less than operation.
|
class |
NEExpression
This class expression performs the not equal operation on values.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ContainsExpression
Expression to evaluate the String.contains type expression.
|
class |
EndsWithExpression
Expression to evaluate the String.endsWith type expression.
|
class |
StartsWithExpression
Expression to evaluate the String.startsWith type expression.
|