Interface AttributeValue.Builder

  • Method Details

    • stringValue

      AttributeValue.Builder stringValue(String stringValue)

      A string value for the attribute.

      Parameters:
      stringValue - A string value for the attribute.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • numberValue

      AttributeValue.Builder numberValue(Double numberValue)

      A numeric value for the attribute.

      Parameters:
      numberValue - A numeric value for the attribute.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • booleanValue

      AttributeValue.Builder booleanValue(Boolean booleanValue)

      A Boolean value for the attribute.

      Parameters:
      booleanValue - A Boolean value for the attribute.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • stringArray

      AttributeValue.Builder stringArray(Collection<String> stringArray)

      An array of string values for the attribute.

      Parameters:
      stringArray - An array of string values for the attribute.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • stringArray

      AttributeValue.Builder stringArray(String... stringArray)

      An array of string values for the attribute.

      Parameters:
      stringArray - An array of string values for the attribute.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • numberArray

      AttributeValue.Builder numberArray(Collection<Double> numberArray)

      An array of numeric values for the attribute.

      Parameters:
      numberArray - An array of numeric values for the attribute.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • numberArray

      AttributeValue.Builder numberArray(Double... numberArray)

      An array of numeric values for the attribute.

      Parameters:
      numberArray - An array of numeric values for the attribute.
      Returns:
      Returns a reference to this object so that method calls can be chained together.