public static interface Value.Builder extends SdkPojo, CopyableBuilder<Value.Builder,Value>
| Modifier and Type | Method and Description |
|---|---|
Value.Builder |
arrayValues(Collection<Value> arrayValues)
Arbitrarily nested arrays
|
Value.Builder |
arrayValues(Consumer<Value.Builder>... arrayValues)
Arbitrarily nested arrays This is a convenience that creates an instance of the
List
avoiding the need to create one manually via List. |
Value.Builder |
arrayValues(Value... arrayValues)
Arbitrarily nested arrays
|
Value.Builder |
bigIntValue(Long bigIntValue)
Long value
|
Value.Builder |
bitValue(Boolean bitValue)
Bit value
|
Value.Builder |
blobValue(SdkBytes blobValue)
Blob value
|
Value.Builder |
doubleValue(Double doubleValue)
Double value
|
Value.Builder |
intValue(Integer intValue)
Integer value
|
Value.Builder |
isNull(Boolean isNull)
Is column null
|
Value.Builder |
realValue(Float realValue)
Float value
|
Value.Builder |
stringValue(String stringValue)
String value
|
default Value.Builder |
structValue(Consumer<StructValue.Builder> structValue)
Struct or UDT This is a convenience that creates an instance of the
StructValue.Builder avoiding the
need to create one manually via StructValue.builder(). |
Value.Builder |
structValue(StructValue structValue)
Struct or UDT
|
copyapplyMutation, buildValue.Builder arrayValues(Collection<Value> arrayValues)
arrayValues - Arbitrarily nested arraysValue.Builder arrayValues(Value... arrayValues)
arrayValues - Arbitrarily nested arraysValue.Builder arrayValues(Consumer<Value.Builder>... arrayValues)
List.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)
bigIntValue - Long valueValue.Builder bitValue(Boolean bitValue)
bitValue - Bit valueValue.Builder blobValue(SdkBytes blobValue)
blobValue - Blob valueValue.Builder doubleValue(Double doubleValue)
doubleValue - Double valueValue.Builder intValue(Integer intValue)
intValue - Integer valueValue.Builder isNull(Boolean isNull)
isNull - Is column nullValue.Builder realValue(Float realValue)
realValue - Float valueValue.Builder stringValue(String stringValue)
stringValue - String valueValue.Builder structValue(StructValue structValue)
structValue - Struct or UDTdefault Value.Builder structValue(Consumer<StructValue.Builder> structValue)
StructValue.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 © 2017 Amazon Web Services, Inc. All Rights Reserved.