Package | Description |
---|---|
com.espertech.esper.common.client.soda |
This package defines the Esper statement object model.
|
Modifier and Type | Method and Description |
---|---|
InExpression |
InExpression.add(Expression expression)
Add an expression to include in the computation.
|
InExpression |
InExpression.add(java.lang.Object object)
Add a constant to include in the computation.
|
InExpression |
InExpression.add(java.lang.String propertyName)
Add a property to include in the computation.
|
static InExpression |
Expressions.in(Expression value,
Expression... set)
In-expression that is equivalent to the syntax of "property in (value, value, ...
|
static InExpression |
Expressions.in(java.lang.String property,
java.lang.Object... values)
In-expression that is equivalent to the syntax of "property in (value, value, ...
|
static InExpression |
Expressions.notIn(Expression value,
Expression... set)
Not-In-expression that is equivalent to the syntax of "property not in (value, value, ...
|
static InExpression |
Expressions.notIn(java.lang.String property,
java.lang.Object... values)
Not-In-expression that is equivalent to the syntax of "property not in (value, value, ...
|