Package | Description |
---|---|
com.espertech.esper.client.soda |
This package defines the Esper statement object model.
|
Modifier and Type | Method and Description |
---|---|
OrderByClause |
OrderByClause.add(Expression expression,
boolean isDescending)
Adds an expression and flag.
|
OrderByClause |
OrderByClause.add(String property,
boolean isDescending)
Adds a property and flag.
|
static OrderByClause |
OrderByClause.create()
Create an empty order-by clause.
|
static OrderByClause |
OrderByClause.create(Expression... expressions)
Create an order-by clause.
|
static OrderByClause |
OrderByClause.create(String... properties)
Create an order-by clause.
|
OrderByClause |
EPStatementObjectModel.getOrderByClause()
Return the order-by-clause, or null to indicate that the clause is absent.
|
Modifier and Type | Method and Description |
---|---|
EPStatementObjectModel |
EPStatementObjectModel.orderByClause(OrderByClause orderByClause)
Specify an order-by-clause.
|
void |
EPStatementObjectModel.setOrderByClause(OrderByClause orderByClause)
Specify an order-by-clause.
|