public static interface SchemaDefinition.Builder extends SdkPojo, CopyableBuilder<SchemaDefinition.Builder,SchemaDefinition>
Modifier and Type | Method and Description |
---|---|
SchemaDefinition.Builder |
columns(Collection<Column> columns)
Specifies one or more columns that store your data.
|
SchemaDefinition.Builder |
columns(Column... columns)
Specifies one or more columns that store your data.
|
SchemaDefinition.Builder |
columns(Consumer<Column.Builder>... columns)
Specifies one or more columns that store your data.
|
equalsBySdkFields, sdkFields
copy
applyMutation, build
SchemaDefinition.Builder columns(Collection<Column> columns)
Specifies one or more columns that store your data.
Each schema can have up to 100 columns. Each column can have up to 100 nested types
columns
- Specifies one or more columns that store your data.
Each schema can have up to 100 columns. Each column can have up to 100 nested types
SchemaDefinition.Builder columns(Column... columns)
Specifies one or more columns that store your data.
Each schema can have up to 100 columns. Each column can have up to 100 nested types
columns
- Specifies one or more columns that store your data.
Each schema can have up to 100 columns. Each column can have up to 100 nested types
SchemaDefinition.Builder columns(Consumer<Column.Builder>... columns)
Specifies one or more columns that store your data.
Each schema can have up to 100 columns. Each column can have up to 100 nested types
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 #columns(List)
.columns
- a consumer that will call methods on List.Builder
#columns(List)