R - the root query bean typepublic class PString<R> extends TQProperty<R>
| Constructor and Description |
|---|
PString(String name,
R root)
Construct with a property name and root instance.
|
PString(String name,
R root,
String prefix)
Construct with additional path prefix.
|
| Modifier and Type | Method and Description |
|---|---|
R |
contains(String value)
Contains - uses a like with '%' wildcard added to the beginning and end.
|
R |
endsWith(String value)
Ends with - uses a like with '%' wildcard added to the beginning.
|
R |
eq(String value)
Is equal to.
|
R |
equalTo(String value)
Is equal to.
|
R |
icontains(String value)
Case insensitive contains.
|
R |
iendsWith(String value)
Case insensitive ends with.
|
R |
ieq(String value)
Case insensitive is equal to.
|
R |
iequalTo(String value)
Case insensitive is equal to.
|
R |
ilike(String value)
Case insensitive like.
|
R |
istartsWith(String value)
Case insensitive starts with.
|
R |
like(String value)
Like - include '%' and '_' placeholders as necessary.
|
R |
match(String value)
Add a full text "Match" expression.
|
R |
startsWith(String value)
Starts with - uses a like with '%' wildcard added to the end.
|
public PString(String name, R root)
name - property nameroot - the root query bean instancepublic R eq(String value)
value - the equal to bind valuepublic R ieq(String value)
value - the equal to bind valuepublic R equalTo(String value)
value - the equal to bind valuepublic R iequalTo(String value)
value - the equal to bind valuepublic R like(String value)
value - the equal to bind valuepublic R startsWith(String value)
value - the equal to bind valuepublic R endsWith(String value)
value - the equal to bind valuepublic R contains(String value)
value - the equal to bind valuepublic R ilike(String value)
value - the equal to bind valuepublic R istartsWith(String value)
value - the equal to bind valuepublic R iendsWith(String value)
value - the equal to bind valuepublic R icontains(String value)
value - the equal to bind valueCopyright © 2016. All rights reserved.