Package | Description |
---|---|
com.amazonaws.services.dynamodbv2.document.utils |
Modifier and Type | Method and Description |
---|---|
ValueMap |
ValueMap.with(java.lang.String key,
java.lang.Object val)
Sets the value of the specified key to the given value.
|
ValueMap |
ValueMap.withBinary(java.lang.String key,
byte[] val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withBinarySet(java.lang.String key,
byte[]... val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withBinarySet(java.lang.String key,
java.util.Set<byte[]> val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withBoolean(java.lang.String key,
boolean val)
Sets the value of the specified key in the current ValueMap to the
boolean value.
|
ValueMap |
ValueMap.withInt(java.lang.String key,
int val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withList(java.lang.String key,
java.util.List<?> val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withList(java.lang.String key,
java.lang.Object... vals)
Sets the value of the specified key in the current ValueMap to the
given values as a list.
|
ValueMap |
ValueMap.withLong(java.lang.String key,
long val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withMap(java.lang.String key,
java.util.Map<java.lang.String,?> val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withNull(java.lang.String key)
Sets the value of the specified key to null.
|
ValueMap |
ValueMap.withNumber(java.lang.String key,
java.math.BigDecimal val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withNumber(java.lang.String key,
java.lang.Number val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withNumberSet(java.lang.String key,
java.math.BigDecimal... val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withNumberSet(java.lang.String key,
java.lang.Number... val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withNumberSet(java.lang.String key,
java.util.Set<java.math.BigDecimal> val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withString(java.lang.String key,
java.lang.String val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withStringSet(java.lang.String key,
java.util.Set<java.lang.String> val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withStringSet(java.lang.String key,
java.lang.String... val)
Sets the value of the specified key in the current ValueMap to the
given value.
|