public static interface DataSetSchema.Builder extends SdkPojo, CopyableBuilder<DataSetSchema.Builder,DataSetSchema>
Modifier and Type | Method and Description |
---|---|
DataSetSchema.Builder |
columnSchemaList(Collection<ColumnSchema> columnSchemaList)
A structure containing the list of column schemas.
|
DataSetSchema.Builder |
columnSchemaList(ColumnSchema... columnSchemaList)
A structure containing the list of column schemas.
|
DataSetSchema.Builder |
columnSchemaList(Consumer<ColumnSchema.Builder>... columnSchemaList)
A structure containing the list of column schemas.
|
equalsBySdkFields, sdkFields
copy
applyMutation, build
DataSetSchema.Builder columnSchemaList(Collection<ColumnSchema> columnSchemaList)
A structure containing the list of column schemas.
columnSchemaList
- A structure containing the list of column schemas.DataSetSchema.Builder columnSchemaList(ColumnSchema... columnSchemaList)
A structure containing the list of column schemas.
columnSchemaList
- A structure containing the list of column schemas.DataSetSchema.Builder columnSchemaList(Consumer<ColumnSchema.Builder>... columnSchemaList)
A structure containing the list of column schemas.
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 #columnSchemaList(List)
.columnSchemaList
- a consumer that will call methods on List.Builder
#columnSchemaList(List)
Copyright © 2020. All rights reserved.