public static interface QueryBuilderInterface.WhereBuilderInterface<QueryT>
This builder is not thread safe.
Modifier and Type | Method and Description |
---|---|
QueryBuilderInterface<QueryT> |
contains(String propertyValue)
Adds the predicate CONTAINS to the query for the given value.
|
QueryBuilderInterface<QueryT> |
containsAll(double... values)
Adds the predicate CONTAINS_ALL to the query for the given set of values.
|
QueryBuilderInterface<QueryT> |
containsAll(int... values)
Adds the predicate CONTAINS_ALL to the query for the given set of values.
|
QueryBuilderInterface<QueryT> |
containsAll(long... values)
Adds the predicate CONTAINS_ALL to the query for the given set of values.
|
QueryBuilderInterface<QueryT> |
containsAll(String... values)
Adds the predicate CONTAINS_ALL to the query for the given set of values.
|
QueryBuilderInterface<QueryT> |
containsAny(double... values)
Adds the predicate CONTAINS_ANY to the query for the given set of values.
|
QueryBuilderInterface<QueryT> |
containsAny(int... values)
Adds the predicate CONTAINS_ANY to the query for the given set of values.
|
QueryBuilderInterface<QueryT> |
containsAny(long... values)
Adds the predicate CONTAINS_ANY to the query for the given set of values.
|
QueryBuilderInterface<QueryT> |
containsAny(String... values)
Adds the predicate CONTAINS_ANY to the query for the given set of values.
|
QueryBuilderInterface<QueryT> |
containsIgnoreCase(String propertyValue)
Adds the predicate CONTAINS_IGNORE_CASE to the query for the given value.
|
QueryBuilderInterface<QueryT> |
containsNone(double... values)
Adds the predicate CONTAINS_NONE to the query for the given set of values.
|
QueryBuilderInterface<QueryT> |
containsNone(int... values)
Adds the predicate CONTAINS_NONE to the query for the given set of values.
|
QueryBuilderInterface<QueryT> |
containsNone(long... values)
Adds the predicate CONTAINS_NONE to the query for the given set of values.
|
QueryBuilderInterface<QueryT> |
containsNone(String... values)
Adds the predicate CONTAINS_NONE to the query for the given set of values.
|
QueryBuilderInterface<QueryT> |
doesNotContain(String propertyValue)
Adds the predicate DOES_NOT_CONTAIN to the query for the given value.
|
QueryBuilderInterface<QueryT> |
doesNotContainIgnoreCase(String propertyValue)
Adds the predicate DOES_NOT_CONTAIN_IGNORE_CASE to the query for the given value.
|
QueryBuilderInterface<QueryT> |
equalTo(boolean propertyValue)
Adds the predicate EQUAL_TO to the query for the given value.
|
QueryBuilderInterface<QueryT> |
equalTo(int propertyValue)
Adds the predicate EQUAL_TO to the query for the given value.
|
QueryBuilderInterface<QueryT> |
equalTo(long propertyValue)
Adds the predicate EQUAL_TO to the query for the given value.
|
QueryBuilderInterface<QueryT> |
equalTo(String propertyValue)
Adds the predicate EQUAL_TO to the query for the given value.
|
QueryBuilderInterface<QueryT> |
greaterThan(double propertyValue)
Adds the predicate GREATER_THAN to the query for the given value.
|
QueryBuilderInterface<QueryT> |
greaterThan(int propertyValue)
Adds the predicate GREATER_THAN to the query for the given value.
|
QueryBuilderInterface<QueryT> |
greaterThan(long propertyValue)
Adds the predicate GREATER_THAN to the query for the given value.
|
QueryBuilderInterface<QueryT> |
greaterThanOrEqualTo(double propertyValue)
Adds the predicate GREATER_THAN_OR_EQUAL_TO to the query for the given value.
|
QueryBuilderInterface<QueryT> |
greaterThanOrEqualTo(int propertyValue)
Adds the predicate GREATER_THAN_OR_EQUAL_TO to the query for the given value.
|
QueryBuilderInterface<QueryT> |
greaterThanOrEqualTo(long propertyValue)
Adds the predicate GREATER_THAN_OR_EQUAL_TO to the query for the given value.
|
QueryBuilderInterface<QueryT> |
in(boolean... values)
Adds the predicate IN to the query for the given set of values.
|
QueryBuilderInterface<QueryT> |
in(double... values)
Adds the predicate IN to the query for the given set of values.
|
QueryBuilderInterface<QueryT> |
in(int... values)
Adds the predicate IN to the query for the given set of values.
|
QueryBuilderInterface<QueryT> |
in(long... values)
Adds the predicate IN to the query for the given set of values.
|
QueryBuilderInterface<QueryT> |
in(String... values)
Adds the predicate IN to the query for the given set of values.
|
QueryBuilderInterface<QueryT> |
lessThan(double propertyValue)
Adds the predicate LESS_THAN to the query for the given value.
|
QueryBuilderInterface<QueryT> |
lessThan(int propertyValue)
Adds the predicate LESS_THAN to the query for the given value.
|
QueryBuilderInterface<QueryT> |
lessThan(long propertyValue)
Adds the predicate LESS_THAN to the query for the given value.
|
QueryBuilderInterface<QueryT> |
lessThanOrEqualTo(double propertyValue)
Adds the predicate LESS_THAN_OR_EQUAL_TO to the query for the given value.
|
QueryBuilderInterface<QueryT> |
lessThanOrEqualTo(int propertyValue)
Adds the predicate LESS_THAN_OR_EQUAL_TO to the query for the given value.
|
QueryBuilderInterface<QueryT> |
lessThanOrEqualTo(long propertyValue)
Adds the predicate LESS_THAN_OR_EQUAL_TO to the query for the given value.
|
QueryBuilderInterface<QueryT> |
notEqualTo(boolean propertyValue)
Adds the predicate NOT_EQUAL_TO to the query for the given value.
|
QueryBuilderInterface<QueryT> |
notEqualTo(int propertyValue)
Adds the predicate NOT_EQUAL_TO to the query for the given value.
|
QueryBuilderInterface<QueryT> |
notEqualTo(long propertyValue)
Adds the predicate NOT_EQUAL_TO to the query for the given value.
|
QueryBuilderInterface<QueryT> |
notEqualTo(String propertyValue)
Adds the predicate NOT_EQUAL_TO to the query for the given value.
|
QueryBuilderInterface<QueryT> |
notIn(boolean... values)
Adds the predicate NOT_IN to the query for the given set of values.
|
QueryBuilderInterface<QueryT> |
notIn(double... values)
Adds the predicate NOT_IN to the query for the given set of values.
|
QueryBuilderInterface<QueryT> |
notIn(int... values)
Adds the predicate NOT_IN to the query for the given set of values.
|
QueryBuilderInterface<QueryT> |
notIn(long... values)
Adds the predicate NOT_IN to the query for the given set of values.
|
QueryBuilderInterface<QueryT> |
notIn(String... values)
Adds the predicate NOT_IN to the query for the given set of values.
|
QueryBuilderInterface<QueryT> |
startsWith(String propertyValue)
Adds the predicate STARTS_WITH to the query for the given value.
|
QueryBuilderInterface<QueryT> |
startsWithIgnoreCase(String propertyValue)
Adds the predicate STARTS_WITH_IGNORE_CASE to the query for the given value.
|
QueryBuilderInterface<QueryT> equalTo(String propertyValue)
propertyValue
- the property value as a String independently of the field type. The
caller should take care of the formatting if it is necessaryQueryBuilderInterface<QueryT> equalTo(int propertyValue)
propertyValue
- the property value as a integer independently of the field typeQueryBuilderInterface<QueryT> equalTo(long propertyValue)
propertyValue
- the property value as a long independently of the field typeQueryBuilderInterface<QueryT> equalTo(boolean propertyValue)
propertyValue
- the property value as a boolean independently of the field typeQueryBuilderInterface<QueryT> notEqualTo(String propertyValue)
propertyValue
- the property value as a String independently of the field type. The
caller should take care of the formatting if it is necessaryQueryBuilderInterface<QueryT> notEqualTo(int propertyValue)
propertyValue
- the property value as a integer independently of the field typeQueryBuilderInterface<QueryT> notEqualTo(long propertyValue)
propertyValue
- the property value as a long independently of the field typeQueryBuilderInterface<QueryT> notEqualTo(boolean propertyValue)
propertyValue
- the property value as a boolean independently of the field typeQueryBuilderInterface<QueryT> contains(String propertyValue)
propertyValue
- the property value as a String independently of the field type. The
caller should take care of the formatting if it is necessaryQueryBuilderInterface<QueryT> containsIgnoreCase(String propertyValue)
propertyValue
- the property value as a String independently of the field type. The
caller should take care of the formatting if it is necessaryQueryBuilderInterface<QueryT> doesNotContain(String propertyValue)
propertyValue
- the property value as a String independently of the field type. The
caller should take care of the formatting if it is necessaryQueryBuilderInterface<QueryT> doesNotContainIgnoreCase(String propertyValue)
propertyValue
- the property value as a String independently of the field type. The
caller should take care of the formatting if it is necessaryQueryBuilderInterface<QueryT> greaterThan(long propertyValue)
QueryBuilderInterface<QueryT> greaterThan(int propertyValue)
QueryBuilderInterface<QueryT> greaterThan(double propertyValue)
QueryBuilderInterface<QueryT> greaterThanOrEqualTo(long propertyValue)
QueryBuilderInterface<QueryT> greaterThanOrEqualTo(int propertyValue)
QueryBuilderInterface<QueryT> greaterThanOrEqualTo(double propertyValue)
QueryBuilderInterface<QueryT> lessThan(long propertyValue)
QueryBuilderInterface<QueryT> lessThan(int propertyValue)
QueryBuilderInterface<QueryT> lessThan(double propertyValue)
QueryBuilderInterface<QueryT> lessThanOrEqualTo(long propertyValue)
QueryBuilderInterface<QueryT> lessThanOrEqualTo(int propertyValue)
QueryBuilderInterface<QueryT> lessThanOrEqualTo(double propertyValue)
QueryBuilderInterface<QueryT> startsWith(String propertyValue)
propertyValue
- the property value as a String independently of the field type. The
caller should take care of the formatting if it is necessaryQueryBuilderInterface<QueryT> startsWithIgnoreCase(String propertyValue)
propertyValue
- the property value as a String independently of the field type. The
caller should take care of the formatting if it is necessaryQueryBuilderInterface<QueryT> in(String... values)
QueryBuilderInterface<QueryT> in(int... values)
QueryBuilderInterface<QueryT> in(long... values)
QueryBuilderInterface<QueryT> in(double... values)
QueryBuilderInterface<QueryT> in(boolean... values)
QueryBuilderInterface<QueryT> notIn(String... values)
QueryBuilderInterface<QueryT> notIn(int... values)
QueryBuilderInterface<QueryT> notIn(long... values)
QueryBuilderInterface<QueryT> notIn(double... values)
QueryBuilderInterface<QueryT> notIn(boolean... values)
QueryBuilderInterface<QueryT> containsAny(String... values)
QueryBuilderInterface<QueryT> containsAny(int... values)
QueryBuilderInterface<QueryT> containsAny(long... values)
QueryBuilderInterface<QueryT> containsAny(double... values)
QueryBuilderInterface<QueryT> containsAll(String... values)
QueryBuilderInterface<QueryT> containsAll(int... values)
QueryBuilderInterface<QueryT> containsAll(long... values)
QueryBuilderInterface<QueryT> containsAll(double... values)
QueryBuilderInterface<QueryT> containsNone(String... values)
QueryBuilderInterface<QueryT> containsNone(int... values)
QueryBuilderInterface<QueryT> containsNone(long... values)
QueryBuilderInterface<QueryT> containsNone(double... values)
Copyright © 2018. All Rights Reserved.