Package | Description |
---|---|
com.espertech.esper.client.soda |
This package defines the Esper statement object model.
|
Modifier and Type | Method and Description |
---|---|
ArithmaticExpression |
ArithmaticExpression.add(Expression expression)
Add an expression to include in the computation.
|
ArithmaticExpression |
ArithmaticExpression.add(Object object)
Add a constant to include in the computation.
|
ArithmaticExpression |
ArithmaticExpression.add(String propertyName)
Add a property to include in the computation.
|
static ArithmaticExpression |
Expressions.divide(Expression left,
Expression right)
Division.
|
static ArithmaticExpression |
Expressions.divide(String propertyLeft,
String propertyRight)
Division.
|
static ArithmaticExpression |
Expressions.minus(Expression left,
Expression right)
Subtraction.
|
static ArithmaticExpression |
Expressions.minus(String propertyLeft,
String propertyRight)
Subtraction.
|
static ArithmaticExpression |
Expressions.modulo(Expression left,
Expression right)
Modulo.
|
static ArithmaticExpression |
Expressions.modulo(String propertyLeft,
String propertyRight)
Modulo.
|
static ArithmaticExpression |
Expressions.multiply(Expression left,
Expression right)
Multiplication.
|
static ArithmaticExpression |
Expressions.multiply(String propertyLeft,
String propertyRight)
Multiplication.
|
static ArithmaticExpression |
Expressions.plus(Expression left,
Expression right)
Addition.
|
static ArithmaticExpression |
Expressions.plus(String propertyLeft,
String propertyRight)
Addition.
|