AllExpression |
The All expression is used to collect all the instances of a specified entity type.
|
ArithmeticExpression |
The arithmetic expression is used to compute a new value using two single values.
|
ConditionExpression |
The condition expression is used to compare two single values against each other.
|
ConstExpression |
The const expression is used to hold a constant value.
|
ConversionExpression |
The conversion expression is used to change the result data type of an expression.
|
DimensionExpression |
The dimension expression is used to change the dimension of the wrapped expression's result.
|
EachExpression |
The each expression can be used to check if all of the selected values matches the condition.
|
ExistsExpression |
The exists expression can be used to check if at least one of the selected values matches the condition.
|
FieldVariableExpression |
The field expression retrieves the value of a field from the instance returned by the parent expression.
|
FunctionExpression |
The function expression can be used to invoke a (custom) function.
|
InstanceOfExpression |
This instance of expression can be used to check if an (entity) instance is of a specified type.
|
InversionExpression |
The InverseExpression class will wrap an expression, and invert its's sign.
|
IsActiveExpression |
The IsActive expression can be used to check if an instance of the provided entity is currently active.
|
ListArithmeticExpression |
The list arithmetic expression performs an operation on two expressions.
|
ListConditionExpression |
The list expression resulting in a boolean by comparing expressions resulting in multiple values.
|
ListExpression |
The list expression combines the result of multiple expressions into a single list.
|
LocalVariableExpression |
This class holds the information for a single local variable.
|
LogicalExpression |
The logical expression combines the result of two boolean expressions.
|
NamedVariableExpression |
A named expression is used to select a single (static) instance by name.
|
NotExpression |
The not expression is used to invert the result of a boolean expression.
|
RootExpression |
This class holds the root expression and any local variable that have been declared.
|
SelectExpression |
The select expression can be used to retrieve one or more values that match the specified condition.
|
TemplateExpression |
The template expression is used to include a predefined expression (template) into the current expression.
|
TypeOfExpression |
This expression may be used to get the type name of an instance.
|
UnknownExpression |
This expression is used for unknown nodes (?) and nodes that failed (ErrorNode).
|
VariableExpression |
A variable expression is an expression that usually identifies an active instance of an entity type.
|