Uses of Class
com.amazonaws.services.dynamodbv2.xspec.AddAction

Packages that use AddAction
Package
Description
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.
  • Uses of AddAction in com.amazonaws.services.dynamodbv2.xspec

    Modifier and Type
    Method
    Description
    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.
    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.
    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.
    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.
    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.
    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.