public interface SphereEnumerationQueryModel<T,E extends SphereEnumeration> extends EqualityQueryModel<T,E>, NotEqualQueryModel<T,E>, IsInQueryModel<T,E>, IsNotInQueryModel<T,E>
Modifier and Type | Method and Description |
---|---|
QueryPredicate<T> |
is(E value) |
QueryPredicate<T> |
isIn(Iterable<E> args) |
QueryPredicate<T> |
isNot(E element) |
QueryPredicate<T> |
isNotIn(Iterable<E> args) |
QueryPredicate<T> is(E value)
is
in interface EqualityQueryModel<T,E extends SphereEnumeration>
QueryPredicate<T> isIn(Iterable<E> args)
isIn
in interface IsInQueryModel<T,E extends SphereEnumeration>
QueryPredicate<T> isNotIn(Iterable<E> args)
isNotIn
in interface IsNotInQueryModel<T,E extends SphereEnumeration>
QueryPredicate<T> isNot(E element)
isNot
in interface NotEqualQueryModel<T,E extends SphereEnumeration>