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