public interface StringQueryModel<T> extends OptionalQueryModel<T>, EqualityQueryModel<T,String>, NotEqualQueryModel<T,String>, IsInQueryModel<T,String>, InequalityQueryModel<T,String>, IsNotInQueryModel<T,String>
| Modifier and Type | Method and Description |
|---|---|
QueryPredicate<T> |
is(String s) |
QueryPredicate<T> |
isGreaterThan(String value) |
QueryPredicate<T> |
isGreaterThanOrEqualTo(String value) |
QueryPredicate<T> |
isIn(Iterable<String> args) |
QueryPredicate<T> |
isLessThan(String value) |
QueryPredicate<T> |
isLessThanOrEqualTo(String value) |
QueryPredicate<T> |
isNot(String s) |
QueryPredicate<T> |
isNotIn(Iterable<String> args) |
QueryPredicate<T> |
isNotPresent() |
QueryPredicate<T> |
isPresent() |
QueryPredicate<T> is(String s)
is in interface EqualityQueryModel<T,String>QueryPredicate<T> isNot(String s)
isNot in interface NotEqualQueryModel<T,String>QueryPredicate<T> isIn(Iterable<String> args)
isIn in interface IsInQueryModel<T,String>QueryPredicate<T> isGreaterThan(String value)
isGreaterThan in interface InequalityQueryModel<T,String>QueryPredicate<T> isLessThan(String value)
isLessThan in interface InequalityQueryModel<T,String>QueryPredicate<T> isLessThanOrEqualTo(String value)
isLessThanOrEqualTo in interface InequalityQueryModel<T,String>QueryPredicate<T> isGreaterThanOrEqualTo(String value)
isGreaterThanOrEqualTo in interface InequalityQueryModel<T,String>QueryPredicate<T> isNotIn(Iterable<String> args)
isNotIn in interface IsNotInQueryModel<T,String>QueryPredicate<T> isPresent()
isPresent in interface OptionalQueryModel<T>QueryPredicate<T> isNotPresent()
isNotPresent in interface OptionalQueryModel<T>