public static interface Value.Builder extends SdkPojo, CopyableBuilder<Value.Builder,Value>
| Modifier and Type | Method and Description |
|---|---|
Value.Builder |
arrayValues(Collection<Value> arrayValues)
An array of column values.
|
Value.Builder |
arrayValues(Consumer<Value.Builder>... arrayValues)
An array of column values.
|
Value.Builder |
arrayValues(Value... arrayValues)
An array of column values.
|
Value.Builder |
bigIntValue(Long bigIntValue)
A value for a column of big integer data type.
|
Value.Builder |
bitValue(Boolean bitValue)
A value for a column of BIT data type.
|
Value.Builder |
blobValue(SdkBytes blobValue)
A value for a column of BLOB data type.
|
Value.Builder |
doubleValue(Double doubleValue)
A value for a column of double data type.
|
Value.Builder |
intValue(Integer intValue)
A value for a column of integer data type.
|
Value.Builder |
isNull(Boolean isNull)
A NULL value.
|
Value.Builder |
realValue(Float realValue)
A value for a column of real data type.
|
Value.Builder |
stringValue(String stringValue)
A value for a column of string data type.
|
default Value.Builder |
structValue(Consumer<StructValue.Builder> structValue)
A value for a column of STRUCT data type.
|
Value.Builder |
structValue(StructValue structValue)
A value for a column of STRUCT data type.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildValue.Builder arrayValues(Collection<Value> arrayValues)
An array of column values.
arrayValues - An array of column values.Value.Builder arrayValues(Value... arrayValues)
An array of column values.
arrayValues - An array of column values.Value.Builder arrayValues(Consumer<Value.Builder>... arrayValues)
An array of column values.
This is a convenience that creates an instance of theList.Builder avoiding the need to create
one manually via List#builder() .
When the Consumer completes, List.Builder#build() is called immediately and its result
is passed to #arrayValues(List) .arrayValues - a consumer that will call methods on List.Builder #arrayValues(List) Value.Builder bigIntValue(Long bigIntValue)
A value for a column of big integer data type.
bigIntValue - A value for a column of big integer data type.Value.Builder bitValue(Boolean bitValue)
A value for a column of BIT data type.
bitValue - A value for a column of BIT data type.Value.Builder blobValue(SdkBytes blobValue)
A value for a column of BLOB data type.
blobValue - A value for a column of BLOB data type.Value.Builder doubleValue(Double doubleValue)
A value for a column of double data type.
doubleValue - A value for a column of double data type.Value.Builder intValue(Integer intValue)
A value for a column of integer data type.
intValue - A value for a column of integer data type.Value.Builder isNull(Boolean isNull)
A NULL value.
isNull - A NULL value.Value.Builder realValue(Float realValue)
A value for a column of real data type.
realValue - A value for a column of real data type.Value.Builder stringValue(String stringValue)
A value for a column of string data type.
stringValue - A value for a column of string data type.Value.Builder structValue(StructValue structValue)
A value for a column of STRUCT data type.
structValue - A value for a column of STRUCT data type.default Value.Builder structValue(Consumer<StructValue.Builder> structValue)
A value for a column of STRUCT data type.
This is a convenience that creates an instance of theStructValue.Builder avoiding the need to create
one manually via StructValue.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its result
is passed to structValue(StructValue).structValue - a consumer that will call methods on StructValue.BuilderstructValue(StructValue)Copyright © 2021. All rights reserved.