public interface ListableProperty<T extends QBuilder<T>,S> extends Property<T>
| Modifier and Type | Method and Description |
|---|---|
Condition<T> |
in(Collection<S> values)
Specifies that the field's value must occur at least once in the list of provided values.
|
Condition<T> |
in(S... values)
Specifies that the field's value must occur at least once in the list of provided values.
|
Condition<T> |
nin(Collection<S> values)
Specifies that the field's value must never occur in the list of provided values.
|
Condition<T> |
nin(S... values)
Specifies that the field's value must never occur in the list of provided values.
|
Condition<T> in(S... values)
values - The values that make up the set of things that the field's value must occur in.Condition<T> in(Collection<S> values)
values - The values that make up the set of things that the field's value must occur in.Condition<T> nin(S... values)
values - The values that make up the set of things that the field's value must never occur in.Condition<T> nin(Collection<S> values)
values - The values that make up the set of things that the field's value must never occur in.Copyright © 2017. All rights reserved.