Package | Description |
---|---|
com.amazonaws.services.dynamodbv2.xspec |
A request-centric Expression Specification Builder package that can be used to construct valid
expressions, and the respective name maps and value maps, for various DynamoDB requests in a typeful manner.
|
Modifier and Type | Method and Description |
---|---|
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 |
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(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 |
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.
|
<T extends Number> |
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 |
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.
|
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 |
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.
|
Copyright © 2020. All rights reserved.