public interface TimestampSortingModel<T> extends QuerySortingModel<T>, TimestampModel<T>
| Modifier and Type | Method and Description |
|---|---|
QueryPredicate<T> |
is(ZonedDateTime value) |
QueryPredicate<T> |
isGreaterThan(ZonedDateTime value) |
QueryPredicate<T> |
isGreaterThanOrEqualTo(ZonedDateTime value) |
QueryPredicate<T> |
isIn(Iterable<ZonedDateTime> args) |
QueryPredicate<T> |
isLessThan(ZonedDateTime value) |
QueryPredicate<T> |
isLessThanOrEqualTo(ZonedDateTime value) |
QueryPredicate<T> |
isNot(ZonedDateTime element) |
QueryPredicate<T> |
isNotIn(Iterable<ZonedDateTime> args) |
DirectionlessQuerySort<T> |
sort() |
DirectionlessQuerySort<T> sort()
sort in interface QuerySortingModel<T>QueryPredicate<T> is(ZonedDateTime value)
is in interface EqualityQueryModel<T,ZonedDateTime>is in interface TimestampModel<T>QueryPredicate<T> isGreaterThan(ZonedDateTime value)
isGreaterThan in interface InequalityQueryModel<T,ZonedDateTime>isGreaterThan in interface TimestampModel<T>QueryPredicate<T> isGreaterThanOrEqualTo(ZonedDateTime value)
isGreaterThanOrEqualTo in interface InequalityQueryModel<T,ZonedDateTime>isGreaterThanOrEqualTo in interface TimestampModel<T>QueryPredicate<T> isLessThan(ZonedDateTime value)
isLessThan in interface InequalityQueryModel<T,ZonedDateTime>isLessThan in interface TimestampModel<T>QueryPredicate<T> isLessThanOrEqualTo(ZonedDateTime value)
isLessThanOrEqualTo in interface InequalityQueryModel<T,ZonedDateTime>isLessThanOrEqualTo in interface TimestampModel<T>QueryPredicate<T> isIn(Iterable<ZonedDateTime> args)
isIn in interface IsInQueryModel<T,ZonedDateTime>isIn in interface TimestampModel<T>QueryPredicate<T> isNotIn(Iterable<ZonedDateTime> args)
isNotIn in interface IsNotInQueryModel<T,ZonedDateTime>isNotIn in interface TimestampModel<T>QueryPredicate<T> isNot(ZonedDateTime element)
isNot in interface NotEqualQueryModel<T,ZonedDateTime>isNot in interface TimestampModel<T>