Constructor and Description |
---|
StringPath(String path,
String entity)
Constructor StringPath
|
Modifier and Type | Method and Description |
---|---|
Expression<String> |
between(String startValue,
String endValue)
Method to construct the between expression for string
|
Expression<String> |
contains(String value)
Method to construct the like expression for string contains
|
Expression<String> |
endsWith(String value)
Method to construct the like expression for string ends with
|
Expression<String> |
eq(String value)
Method to construct the equals expression for string
|
Expression<String> |
gt(String value)
Method to construct the greater than expression for string
|
Expression<String> |
gte(String value)
Method to construct the greater than or equals expression for string
|
Expression<String> |
in(String[] value)
Method to construct the in expression for string
|
Expression<String> |
lt(String value)
Method to construct the less than expression for string
|
Expression<String> |
lte(String value)
Method to construct the less than or equals expression for string
|
Expression<String> |
neq(String value)
Method to construct the not equals expression for string
|
Expression<String> |
startsWith(String value)
Method to construct the like expression for string starts with
|
getEntity, getPathString, setEntity, setPathString, toString
public Expression<String> eq(String value)
value
- the string valuepublic Expression<String> neq(String value)
value
- the string valuepublic Expression<String> lt(String value)
value
- the string valuepublic Expression<String> lte(String value)
value
- the string valuepublic Expression<String> gt(String value)
value
- the string valuepublic Expression<String> gte(String value)
value
- the string valuepublic Expression<String> in(String[] value)
value
- the string arraypublic Expression<String> startsWith(String value)
value
- the string valuepublic Expression<String> endsWith(String value)
value
- the string valuepublic Expression<String> contains(String value)
value
- the string valuepublic Expression<String> between(String startValue, String endValue)
startValue
- the start valueendValue
- the end valueCopyright © 2017. All rights reserved.