Package | Description |
---|---|
com.espertech.esper.client.soda |
This package defines the Esper statement object model.
|
Modifier and Type | Method and Description |
---|---|
static LikeExpression |
Expressions.like(Expression left,
Expression right)
SQL-Like.
|
static LikeExpression |
Expressions.like(Expression left,
Expression right,
Expression escape)
SQL-Like.
|
static LikeExpression |
Expressions.like(String propertyName,
Object value,
String escape)
SQL-Like.
|
static LikeExpression |
Expressions.like(String propertyName,
String value)
SQL-Like.
|
static LikeExpression |
Expressions.notLike(Expression left,
Expression right)
SQL-Like negated (not like).
|
static LikeExpression |
Expressions.notLike(Expression left,
Expression right,
Expression escape)
SQL-Like negated (not like).
|
static LikeExpression |
Expressions.notLike(String propertyName,
Object value,
String escape)
SQL-Like negated (not like).
|
static LikeExpression |
Expressions.notLike(String propertyName,
String value)
SQL-Like negated (not like).
|