public static interface ColumnConfiguration.Builder extends SdkPojo, CopyableBuilder<ColumnConfiguration.Builder,ColumnConfiguration>
| Modifier and Type | Method and Description |
|---|---|
ColumnConfiguration.Builder |
changeDetectingColumns(Collection<String> changeDetectingColumns)
One to five columns that indicate when a document in the database has changed.
|
ColumnConfiguration.Builder |
changeDetectingColumns(String... changeDetectingColumns)
One to five columns that indicate when a document in the database has changed.
|
ColumnConfiguration.Builder |
documentDataColumnName(String documentDataColumnName)
The column that contains the contents of the document.
|
ColumnConfiguration.Builder |
documentIdColumnName(String documentIdColumnName)
The column that provides the document's unique identifier.
|
ColumnConfiguration.Builder |
documentTitleColumnName(String documentTitleColumnName)
The column that contains the title of the document.
|
ColumnConfiguration.Builder |
fieldMappings(Collection<DataSourceToIndexFieldMapping> fieldMappings)
An array of objects that map database column names to the corresponding fields in an index.
|
ColumnConfiguration.Builder |
fieldMappings(Consumer<DataSourceToIndexFieldMapping.Builder>... fieldMappings)
An array of objects that map database column names to the corresponding fields in an index.
|
ColumnConfiguration.Builder |
fieldMappings(DataSourceToIndexFieldMapping... fieldMappings)
An array of objects that map database column names to the corresponding fields in an index.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildColumnConfiguration.Builder documentIdColumnName(String documentIdColumnName)
The column that provides the document's unique identifier.
documentIdColumnName - The column that provides the document's unique identifier.ColumnConfiguration.Builder documentDataColumnName(String documentDataColumnName)
The column that contains the contents of the document.
documentDataColumnName - The column that contains the contents of the document.ColumnConfiguration.Builder documentTitleColumnName(String documentTitleColumnName)
The column that contains the title of the document.
documentTitleColumnName - The column that contains the title of the document.ColumnConfiguration.Builder fieldMappings(Collection<DataSourceToIndexFieldMapping> fieldMappings)
An array of objects that map database column names to the corresponding fields in an index. You must first
create the fields in the index using the UpdateIndex operation.
fieldMappings - An array of objects that map database column names to the corresponding fields in an index. You must
first create the fields in the index using the UpdateIndex operation.ColumnConfiguration.Builder fieldMappings(DataSourceToIndexFieldMapping... fieldMappings)
An array of objects that map database column names to the corresponding fields in an index. You must first
create the fields in the index using the UpdateIndex operation.
fieldMappings - An array of objects that map database column names to the corresponding fields in an index. You must
first create the fields in the index using the UpdateIndex operation.ColumnConfiguration.Builder fieldMappings(Consumer<DataSourceToIndexFieldMapping.Builder>... fieldMappings)
An array of objects that map database column names to the corresponding fields in an index. You must first
create the fields in the index using the UpdateIndex operation.
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 #fieldMappings(List) .fieldMappings - a consumer that will call methods on List.Builder #fieldMappings(List) ColumnConfiguration.Builder changeDetectingColumns(Collection<String> changeDetectingColumns)
One to five columns that indicate when a document in the database has changed.
changeDetectingColumns - One to five columns that indicate when a document in the database has changed.ColumnConfiguration.Builder changeDetectingColumns(String... changeDetectingColumns)
One to five columns that indicate when a document in the database has changed.
changeDetectingColumns - One to five columns that indicate when a document in the database has changed.Copyright © 2021. All rights reserved.