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.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.withList(String key,
List<?> val) |
Sets the value of the specified key in the current ValueMap to the
given value.
|
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,
Number val) |
Sets the value of the specified key in the current ValueMap to the
given value.
|
ValueMap |
ValueMap.withNumber(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,
BigDecimal... 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,
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.
|