AddAction |
N.add(Number value) |
Returns an AddAction for build expression that would add the
given value mathematically to the existing attribute; or if the attribute
does not already exist, add the new attribute and the value to the item.
|
AddAction |
BS.append(byte[]... values) |
Returns an AddAction for build expression that would append
the specified values to this binary set; or if the attribute does not
already exist, add the new attribute and the value(s) to the item.
|
AddAction |
BS.append(ByteBuffer... values) |
Returns an AddAction for build expression that would append
the specified values to this binary set; or if the attribute does not
already exist, add the new attribute and the value(s) to the item.
|
AddAction |
NS.append(Number... values) |
Returns an AddAction for building expression that would
append the specified values to this number set; or if the attribute does
not already exist, adding the new attribute and the value(s) to the item.
|
<T extends Number> AddAction |
NS.append(Set<T> values) |
Returns an AddAction for building expression that would
append the specified values to this number set; or if the attribute does
not already exist, adding the new attribute and the value(s) to the item.
|
AddAction |
SS.append(String... values) |
Returns an AddAction for building expression that would
append the specified values to this string set; or if the attribute does
not already exist, add the new attribute and the value(s) to the item.
|
AddAction |
SS.append(Set<String> values) |
Returns an AddAction for building expression that would
append the specified values to this string set; or if the attribute does
not already exist, add the new attribute and the value(s) to the item.
|