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 |
---|---|
static N |
ExpressionSpecBuilder.N(String path)
Creates a path operand that refers to a number attribute for the purpose of building expressions.
|
Modifier and Type | Method and Description |
---|---|
static IfNotExistsFunction<N> |
ExpressionSpecBuilder.if_not_exists(String path,
Number defaultValue)
Returns an
IfNotExists object which represents an if_not_exists(path, operand) function call; used for building
expression. |
IfNotExistsFunction<N> |
N.ifNotExists(N defaultValue)
Returns an
IfNotExists object which represents an if_not_exists(path, operand) function call where path refers to that
of the current attribute; used for building expressions. |
IfNotExistsFunction<N> |
N.ifNotExists(Number defaultValue)
Returns an
IfNotExists object which represents an if_not_exists(path, operand) function call where path refers to that
of the current path operand; used for building expressions. |
Modifier and Type | Method and Description |
---|---|
ComparatorCondition |
N.eq(N that)
Returns a comparator condition (that evaluates to true if the value of the current
attribute is equal to that of the specified attribute) for building
condition expression.
|
ComparatorCondition |
N.ge(N that)
Returns a comparator condition (that evaluates to true if the value of the current
attribute is greater than or equal to that of the specified attribute) for building
condition expression.
|
ComparatorCondition |
N.gt(N that)
Returns a comparator condition (that evaluates to true if the value of the current
attribute is greater than that of the specified attribute) for building
condition expression.
|
IfNotExistsFunction<N> |
N.ifNotExists(N defaultValue)
Returns an
IfNotExists object which represents an if_not_exists(path, operand) function call where path refers to that
of the current attribute; used for building expressions. |
ComparatorCondition |
N.le(N that)
Returns a comparator condition (that evaluates to true if the value of the current
attribute is less than or equal to that of the specified attribute) for building
condition expression.
|
ComparatorCondition |
N.lt(N that)
Returns a comparator condition (that evaluates to true if the value of the current
attribute is less than that of the specified attribute) for building
condition expression.
|
MinusOperation |
N.minus(N attr)
Returns a
MinusOperation object that represents the subtraction of
the value of the given attribute from that of the current attribute; used
for building update expression. |
ComparatorCondition |
N.ne(N that)
Returns a comparator condition (that evaluates to true if the value of the current
attribute is not equal to that of the specified attribute) for building
condition expression.
|
PlusOperation |
N.plus(N attr)
Returns a
PlusOperation object that represents the addition of the
value of the given attribute to that of the current attribute; used for
building update expression. |
SetAction |
N.set(N source)
Returns a
SetAction object used for building update
expression. |
Modifier and Type | Method and Description |
---|---|
SetAction |
N.set(IfNotExistsFunction<N> ifNotExistsFunction)
Returns a
SetAction object used for building update
expression. |
Copyright © 2024. All rights reserved.