Package | Description |
---|---|
com.espertech.esper.common.client.soda |
This package defines the Esper statement object model.
|
Modifier and Type | Method and Description |
---|---|
MaxRowExpression |
MaxRowExpression.add(Expression expression)
Add an expression to include in the computation.
|
MaxRowExpression |
MaxRowExpression.add(java.lang.Object object)
Add a constant to include in the computation.
|
MaxRowExpression |
MaxRowExpression.add(java.lang.String propertyName)
Add a property to include in the computation.
|
static MaxRowExpression |
Expressions.max(Expression exprOne,
Expression exprTwo,
Expression... moreExpressions)
Maximum value per-row function (not aggregating).
|
static MaxRowExpression |
Expressions.max(java.lang.String propertyOne,
java.lang.String propertyTwo,
java.lang.String... moreProperties)
Maximum value per-row function (not aggregating).
|