public interface StringQuerySortingModel<T> extends QuerySortingModel<T>, StringQueryModel<T>
Modifier and Type | Method and Description |
---|---|
static String |
escape(String s)
Internal: Escapes Strings like that (Scala notation) """query by name " test name"""
|
QueryPredicate<T> |
is(String s) |
QueryPredicate<T> |
isGreaterThan(String s) |
QueryPredicate<T> |
isGreaterThanOrEqualTo(String s) |
QueryPredicate<T> |
isIn(Iterable<String> args) |
QueryPredicate<T> |
isLessThan(String s) |
QueryPredicate<T> |
isLessThanOrEqualTo(String s) |
QueryPredicate<T> |
isNot(String s) |
QueryPredicate<T> |
isNotIn(Iterable<String> args) |
QueryPredicate<T> |
isNotPresent() |
QueryPredicate<T> |
isPresent() |
static String |
normalize(String s)
Internal method to normalize Strings for queries.
|
DirectionlessQuerySort<T> |
sort() |
DirectionlessQuerySort<T> sort()
sort
in interface QuerySortingModel<T>
QueryPredicate<T> is(String s)
is
in interface EqualityQueryModel<T,String>
is
in interface StringQueryModel<T>
QueryPredicate<T> isNot(String s)
isNot
in interface NotEqualQueryModel<T,String>
isNot
in interface StringQueryModel<T>
QueryPredicate<T> isIn(Iterable<String> args)
isIn
in interface IsInQueryModel<T,String>
isIn
in interface StringQueryModel<T>
QueryPredicate<T> isGreaterThan(String s)
isGreaterThan
in interface InequalityQueryModel<T,String>
isGreaterThan
in interface StringQueryModel<T>
QueryPredicate<T> isLessThan(String s)
isLessThan
in interface InequalityQueryModel<T,String>
isLessThan
in interface StringQueryModel<T>
QueryPredicate<T> isLessThanOrEqualTo(String s)
isLessThanOrEqualTo
in interface InequalityQueryModel<T,String>
isLessThanOrEqualTo
in interface StringQueryModel<T>
QueryPredicate<T> isGreaterThanOrEqualTo(String s)
isGreaterThanOrEqualTo
in interface InequalityQueryModel<T,String>
isGreaterThanOrEqualTo
in interface StringQueryModel<T>
QueryPredicate<T> isNotIn(Iterable<String> args)
isNotIn
in interface IsNotInQueryModel<T,String>
isNotIn
in interface StringQueryModel<T>
QueryPredicate<T> isPresent()
isPresent
in interface OptionalQueryModel<T>
isPresent
in interface StringQueryModel<T>
QueryPredicate<T> isNotPresent()
isNotPresent
in interface OptionalQueryModel<T>
isNotPresent
in interface StringQueryModel<T>
static String escape(String s)
s
- the unescaped String