static Params |
Params.copyOf(Params params) |
Returns a mutable implementation of Params containing the same entries as given parameters.
|
static Params |
Params.copyOf(Map<String,Value<?>> values) |
Returns a mutable implementation of Params containing the same entries as given map.
|
static Params |
Params.create() |
Returns a modifiable implementation of Params with no parameters.
|
static Params |
Params.create(int initialCapacity) |
Returns a modifiable implementation of Params with no parameters.
|
static Params |
Params.empty() |
Returns an immutable implementation of Params with no parameters.
|
Params |
DataQuery.newParams() |
|
static Params |
Params.of(String name,
Value<?> value) |
Returns an immutable implementation of Params with single parameter.
|
static Params |
Params.of(String name1,
Value<?> value1,
String name2,
Value<?> value2) |
Returns an immutable implementation of Params with two parameters.
|
static Params |
Params.of(String name1,
Value<?> value1,
String name2,
Value<?> value2,
String name3,
Value<?> value3) |
Returns an immutable implementation of Params with three parameters.
|
static Params |
Params.of(String name1,
Value<?> value1,
String name2,
Value<?> value2,
String name3,
Value<?> value3,
String name4,
Value<?> value4) |
Returns an immutable implementation of Params with four parameters.
|
static Params |
Params.of(String name1,
Value<?> value1,
String name2,
Value<?> value2,
String name3,
Value<?> value3,
String name4,
Value<?> value4,
String name5,
Value<?> value5) |
Returns an immutable implementation of Params with five parameters.
|
static Params |
Params.of(String name1,
Value<?> value1,
String name2,
Value<?> value2,
String name3,
Value<?> value3,
String name4,
Value<?> value4,
String name5,
Value<?> value5,
String name6,
Value<?> value6) |
Returns an immutable implementation of Params with six parameters.
|
static Params |
Params.of(String name1,
Value<?> value1,
String name2,
Value<?> value2,
String name3,
Value<?> value3,
String name4,
Value<?> value4,
String name5,
Value<?> value5,
String name6,
Value<?> value6,
String name7,
Value<?> value7,
String name8,
Value<?> value8) |
Returns an immutable implementation of Params with eight parameters.
|
static Params |
Params.of(String name1,
Value<?> value1,
String name2,
Value<?> value2,
String name3,
Value<?> value3,
String name4,
Value<?> value4,
String name5,
Value<?> value5,
String name6,
Value<?> value6,
String name7,
Value<?> value7,
String name8,
Value<?> value8,
String name9,
Value<?> value9) |
Returns an immutable implementation of Params with nine parameters.
|
<T extends Type> Params |
Params.put(String name,
Value<T> value) |
Associates the specified value with the specified name in this params container.
|