Package | Description |
---|---|
com.espertech.esper.client.soda |
This package defines the Esper statement object model.
|
Modifier and Type | Method and Description |
---|---|
static SubqueryInExpression |
Expressions.subqueryIn(Expression expression,
EPStatementObjectModel model)
Subquery with in-clause, represents the syntax of "value in (select ...
|
static SubqueryInExpression |
Expressions.subqueryIn(String property,
EPStatementObjectModel model)
Subquery with in-clause, represents the syntax of "value in (select ...
|
static SubqueryInExpression |
Expressions.subqueryNotIn(Expression expression,
EPStatementObjectModel model)
Subquery with not-in-clause, represents the syntax of "value not in (select ...
|
static SubqueryInExpression |
Expressions.subqueryNotIn(String property,
EPStatementObjectModel model)
Subquery with not-in-clause, represents the syntax of "value not in (select ...
|