Package | Description |
---|---|
com.espertech.esper.client.soda |
This package defines the Esper statement object model.
|
Modifier and Type | Method and Description |
---|---|
static RelationalOpExpression |
Expressions.eq(Expression left,
Expression right)
Equals between expression results.
|
static RelationalOpExpression |
Expressions.eq(String propertyName,
Object value)
Equals between a property and a constant.
|
static RelationalOpExpression |
Expressions.eqProperty(String propertyLeft,
String propertyRight)
Equals between properties.
|
static RelationalOpExpression |
Expressions.ge(Expression left,
Expression right)
Greater-or-equals between expression results.
|
static RelationalOpExpression |
Expressions.ge(String propertyName,
Object value)
Greater-or-equal between a property and a constant.
|
static RelationalOpExpression |
Expressions.geProperty(String propertyLeft,
String propertyRight)
Greater-or-equal between properties.
|
static RelationalOpExpression |
Expressions.gt(Expression left,
Expression right)
Greater-then between expression results.
|
static RelationalOpExpression |
Expressions.gt(String propertyName,
Object value)
Greater-then between a property and a constant.
|
static RelationalOpExpression |
Expressions.gtProperty(String propertyLeft,
String propertyRight)
Greater-then between properties.
|
static RelationalOpExpression |
Expressions.isNotNull(Expression expression)
Not-null test.
|
static RelationalOpExpression |
Expressions.isNotNull(String property)
Not-null test.
|
static RelationalOpExpression |
Expressions.isNull(Expression expression)
Is-null test.
|
static RelationalOpExpression |
Expressions.isNull(String property)
Is-null test.
|
static RelationalOpExpression |
Expressions.le(Expression left,
Expression right)
Less-or-equal between expression results.
|
static RelationalOpExpression |
Expressions.le(String propertyName,
Object value)
Less-or-equals between a property and a constant.
|
static RelationalOpExpression |
Expressions.leProperty(String propertyLeft,
String propertyRight)
Less-or-equal between properties.
|
static RelationalOpExpression |
Expressions.lt(Expression left,
Expression right)
Less-then between expression results.
|
static RelationalOpExpression |
Expressions.lt(String propertyName,
Object value)
Less-then between a property and a constant.
|
static RelationalOpExpression |
Expressions.ltProperty(String propertyLeft,
String propertyRight)
Less-then between properties.
|
static RelationalOpExpression |
Expressions.neq(Expression left,
Expression right)
Not-Equals between expression results.
|
static RelationalOpExpression |
Expressions.neq(String propertyName,
Object value)
Not-Equals between a property and a constant.
|
static RelationalOpExpression |
Expressions.neqProperty(String propertyLeft,
String propertyRight)
Not-Equals between properties.
|