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