ExampleExpression |
ExampleExpression.caseInsensitive() |
Set case insensitive to true.
|
static ExampleExpression |
Expr.exampleLike(Object example) |
Create the query by Example expression which is case sensitive and using
LikeType.RAW (you need to add you own wildcards % and _).
|
static ExampleExpression |
Expr.exampleLike(Object example,
boolean caseInsensitive,
LikeType likeType) |
Create the query by Example expression specifying more options.
|
ExampleExpression |
ExpressionFactory.exampleLike(Object example) |
Create the query by Example expression which is case sensitive and using
LikeType.RAW (you need to add you own wildcards % and _).
|
ExampleExpression |
ExpressionFactory.exampleLike(Object example,
boolean caseInsensitive,
LikeType likeType) |
Create the query by Example expression specifying more options.
|
static ExampleExpression |
Expr.iexampleLike(Object example) |
|
ExampleExpression |
ExpressionFactory.iexampleLike(Object example) |
|
ExampleExpression |
ExampleExpression.includeZeros() |
By calling this method zero value properties are going to be included in
the expression.
|
ExampleExpression |
ExampleExpression.useContains() |
Use contains expression for string properties.
|
ExampleExpression |
ExampleExpression.useEndsWith() |
Use endsWith expression for string properties.
|
ExampleExpression |
ExampleExpression.useEqualTo() |
Use equal to expression for string properties.
|
ExampleExpression |
ExampleExpression.useStartsWith() |
Use startsWith expression for string properties.
|