InCondition |
B.in(byte[]... values) |
Returns an InCondition (that evaluates to true if the value of the current
attribute is equal to any of the specified values) for building condition
expression.
|
InCondition |
B.in(ByteBuffer... values) |
Returns an InCondition (that evaluates to true if the value of the current
attribute is equal to any of the specified values) for building condition
expression.
|
InCondition |
BOOL.in(boolean... values) |
Returns an InCondition (that evaluates to true if the value of the current
attribute is equal to any of the specified values) for
building condition expression.
|
InCondition |
BOOL.in(List<Boolean> values) |
Returns an InCondition (that evaluates to true if the value of the current
attribute is equal to any of the values in the specified list) for
building condition expression.
|
InCondition |
N.in(Number... values) |
Returns an InCondition (that evaluates to true if the value of the current
attribute is equal to any of the specified values) for building condition
expression.
|
<T extends Number> InCondition |
N.in(List<T> values) |
Returns an InCondition (that evaluates to true if the value of the current
attribute is equal to any of the values in the specified list) for
building condition expression.
|
InCondition |
S.in(String... values) |
Returns an InCondition (that evaluates to true if the value of the current
attribute is equal to any of the specified values) for building condition
expression.
|
InCondition |
S.in(List<String> values) |
Returns an InCondition (that evaluates to true if the value of the current
attribute is equal to any of the values in the specified list) for
building condition expression.
|
InCondition |
B.inByteBufferList(List<ByteBuffer> values) |
Returns an InCondition (that evaluates to true if the value of the current
attribute is equal to any of the values in the specified list) for
building condition expression.
|
InCondition |
B.inBytesList(List<byte[]> values) |
Returns an InCondition (that evaluates to true if the value of the current
attribute is equal to any of the values in the specified list) for
building condition expression.
|