ValueList |
ValueList.append(Object val) |
Appends the given value to this list.
|
ValueList |
ValueList.appendAll(Object... elements) |
|
ValueList |
ValueList.appendBinary(byte[] val) |
Appends the given value to this list.
|
ValueList |
ValueList.appendBinarySet(byte[]... val) |
Appends the given values to this list as a set of byte arrays.
|
ValueList |
ValueList.appendBinarySet(Set<byte[]> val) |
Appends the given value to this list.
|
ValueList |
ValueList.appendBoolean(boolean val) |
Appends the given value to this list.
|
ValueList |
ValueList.appendInt(int val) |
Appends the given value to this list.
|
ValueList |
ValueList.appendList(Object... vals) |
Appends the given values to this list as a list.
|
ValueList |
ValueList.appendList(List<?> val) |
Appends the given value to this list.
|
ValueList |
ValueList.appendLong(long val) |
Appends the given value to this list.
|
ValueList |
ValueList.appendMap(Map<String,?> val) |
Appends the given value to this list.
|
ValueList |
ValueList.appendNull() |
Appends a null value to this list.
|
ValueList |
ValueList.appendNumber(Number val) |
Appends the given value to this list.
|
ValueList |
ValueList.appendNumber(BigDecimal val) |
Appends the given value to this list.
|
ValueList |
ValueList.appendNumberSet(Number... val) |
Appends the given values to this list as a number set.
|
ValueList |
ValueList.appendNumberSet(BigDecimal... val) |
Appends the given value to this list as a set of BigDecimals.
|
ValueList |
ValueList.appendNumberSet(Set<BigDecimal> val) |
Appends the given value to this list.
|
ValueList |
ValueList.appendString(String val) |
Appends the given value to this list.
|
ValueList |
ValueList.appendStringSet(String... val) |
Appends the given values to this list as a string set.
|
ValueList |
ValueList.appendStringSet(Set<String> val) |
Appends the given value to this list.
|