Package | Description |
---|---|
com.amazonaws.services.dynamodbv2.document.utils |
Modifier and Type | Method and Description |
---|---|
ValueMap |
ValueMap.with(String key,
Object val)
Sets the value of the specified key to the given value.
|
ValueMap |
ValueMap.withBinary(String key,
byte[] val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withBinarySet(String key,
byte[]... val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withBinarySet(String key,
Set<byte[]> val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withBoolean(String key,
boolean val)
Sets the value of the specified key in the current ValueMap to the
boolean value.
|
ValueMap |
ValueMap.withInt(String key,
int val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withJSON(String key,
String jsonValue)
Sets the value of the specified key to an object represented by the JSON
structure passed.
|
ValueMap |
ValueMap.withList(String key,
List<?> val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withList(String key,
Object... vals)
Sets the value of the specified key in the current ValueMap to the
given values as a list.
|
ValueMap |
ValueMap.withLong(String key,
long val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withMap(String key,
Map<String,?> val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withNull(String key)
Sets the value of the specified key to null.
|
ValueMap |
ValueMap.withNumber(String key,
BigDecimal val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withNumber(String key,
Number val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withNumberSet(String key,
BigDecimal... val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withNumberSet(String key,
Number... val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withNumberSet(String key,
Set<BigDecimal> val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withString(String key,
String val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withStringSet(String key,
Set<String> val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withStringSet(String key,
String... val)
Sets the value of the specified key in the current ValueMap to the
given value.
|
Copyright © 2023. All rights reserved.