| Modifier and Type |
Method |
Description |
static ImmutableNilValue
|
newNil()
|
|
static ImmutableBooleanValue
|
newBoolean(boolean v)
|
|
static ImmutableIntegerValue
|
newInteger(byte v)
|
|
static ImmutableIntegerValue
|
newInteger(short v)
|
|
static ImmutableIntegerValue
|
newInteger(int v)
|
|
static ImmutableIntegerValue
|
newInteger(long v)
|
|
static ImmutableIntegerValue
|
newInteger(BigInteger v)
|
|
static ImmutableFloatValue
|
newFloat(float v)
|
|
static ImmutableFloatValue
|
newFloat(double v)
|
|
static ImmutableBinaryValue
|
newBinary(Array<byte> b)
|
|
static ImmutableBinaryValue
|
newBinary(Array<byte> b, boolean omitCopy)
|
|
static ImmutableBinaryValue
|
newBinary(Array<byte> b, int off, int len)
|
|
static ImmutableBinaryValue
|
newBinary(Array<byte> b, int off, int len, boolean omitCopy)
|
|
static ImmutableStringValue
|
newString(String s)
|
|
static ImmutableStringValue
|
newString(Array<byte> b)
|
|
static ImmutableStringValue
|
newString(Array<byte> b, boolean omitCopy)
|
|
static ImmutableStringValue
|
newString(Array<byte> b, int off, int len)
|
|
static ImmutableStringValue
|
newString(Array<byte> b, int off, int len, boolean omitCopy)
|
|
static ImmutableArrayValue
|
newArray(List<out Value> list)
|
|
static ImmutableArrayValue
|
newArray(Array<Value> array)
|
|
static ImmutableArrayValue
|
newArray(Array<Value> array, boolean omitCopy)
|
|
static ImmutableArrayValue
|
emptyArray()
|
|
static <K extends Value, V extends Value> ImmutableMapValue
|
newMap(Map<K, V> map)
|
|
static ImmutableMapValue
|
newMap(Array<Value> kvs)
|
|
static ImmutableMapValue
|
newMap(Array<Value> kvs, boolean omitCopy)
|
|
static ImmutableMapValue
|
emptyMap()
|
|
static MapValue
|
newMap(Array<Map.Entry<out Value, out Value>> pairs)
|
|
static ValueFactory.MapBuilder
|
newMapBuilder()
|
|
static Map.Entry<Value, Value>
|
newMapEntry(Value key, Value value)
|
|
static ImmutableExtensionValue
|
newExtension(byte type, Array<byte> data)
|
|