| Package | Description |
|---|---|
| org.databene.script.expression |
| Modifier and Type | Class and Description |
|---|---|
class |
ArrayJoinExpression<E>
Expression implementation which assembles other expression that evaluate to arrays
and joins their results to a single array. |
class |
BinaryExpression<E>
Abstract parent class for expression that evaluate two terms.
|
class |
BitwiseAndExpression
Combines two values with a bitwise AND operation.
|
class |
BitwiseComplementExpression
Expression that evaluates to the bitwise complement of another expression's result. |
class |
BitwiseExclusiveOrExpression
Numerical
Expression that combines the results
of two other numerical expressions with a bitwise EXCLUSIVE OR. |
class |
BitwiseOrExpression
Numerical
Expression that combines the results of two other numerical expressions
with a bitwise OR. |
class |
CompositeExpression<S,R>
Expression that evaluates the results of other Expressions.
|
class |
ConcatExpression
String
Expression that concatenates the output of other String Expressions. |
class |
ConditionalAndExpression
Boolean
Expression that combines the result
of two other boolean expressions with a logical AND. |
class |
ConditionalOrExpression
Boolean
Expression that combines the results of two other
boolean expressions with a logical OR. |
class |
DivisionExpression
Expression that performs a division. |
class |
EqualsExpression
Boolean
Expression that compares two terms for equality of their results. |
class |
ExclusiveOrExpression
Boolean
Expression that checks if the result of one
expressions is less than the result of another one. |
class |
FallbackExpression<E>
Expression which evaluates a list of expressions and returns the first result which is not null.
|
class |
GreaterExpression
Boolean
Expression that evaluates if the first term is greater than the second. |
class |
GreaterOrEqualsExpression
Boolean
Expression that evaluates
if term1 is greater than or equal to term2. |
class |
IndexExpression
Expression that evaluates an index argument. |
class |
InRangeExpression
Boolean
Expression that tells if a value lies within a given range. |
class |
IsNullExpression
Expression that returns
true, if a source expression returns null,
else false. |
class |
LeftShiftExpression
Expression that performs a left shift. |
class |
LessExpression
Boolean
Expression that checks if the result of one
expressions is less than the result of another one. |
class |
LessOrEqualsExpression
Boolean
Expression that checks if the results of two other expressions are less or equal. |
class |
LogicalComplementExpression
Expression that evaluates to the logical complement of another expression's result. |
class |
MaxExpression<E>
Calculates the maximum value of several arguments.
|
class |
MinExpression<E>
Expression implementation that calculates the minimum of several values. |
class |
ModuloExpression
Numerical
Expression that performs a modulo operation. |
class |
MultiplicationExpression
Numerical
Expression that multiplies the results of two other numerical expressions. |
class |
NotEqualsExpression
Boolean
Expression that checks for inequality. |
class |
RightShiftExpression
Numerical
Expression that performs a right shift. |
class |
StringExpression
|
class |
SubtractionExpression
Numerical
Expression that performs a subtraction. |
class |
SumExpression
Calculates the sum of two or more expressions.
|
class |
TypeConvertingExpression<E>
Expression implementation that evaluates another expression and converts its results. |
class |
UnaryExpression<E>
Abstract
Expression that serves as parent class for expressions that evaluate a single term. |
class |
UnaryMinusExpression<E>
Expression which calculates the unary minus operation. |
class |
UnsignedRightShiftExpression
Expression that performs an unsigned right shift (>>>). |
class |
ValueCollectionContainsExpression
Boolean
Expression which tells if a value is contained in a given collection. |
Copyright © 2011–2014 Volker Bergmann. All rights reserved.