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