public interface CreateIndexOnTable
Modifier and Type | Method and Description |
---|---|
default CreateIndex |
andColumn(CqlIdentifier columnName)
Specifies the column to create the index on.
|
CreateIndex |
andColumn(CqlIdentifier columnName,
String indexType)
Specifies to create the index on a given column with the given index type.
|
default CreateIndex |
andColumn(String columnName)
Shortcut for
andColumn(CqlIdentifier.fromCql(columnName) . |
default CreateIndex |
andColumn(String columnName,
String indexType)
Shortcut for
andColumn(CqlIdentifier.fromCql(columnName),indexType . |
default CreateIndex |
andColumnEntries(CqlIdentifier columnName)
Specifies to create the index on the given columns' entries (key-value pairs), this must be
done against a
map column. |
default CreateIndex |
andColumnEntries(String columnName)
Shortcut for
andColumnEntries(CqlIdentifier.fromCql(columnName) . |
default CreateIndex |
andColumnFull(CqlIdentifier columnName)
Specifies to create the index on the given columns' entire value, this must be done against a
frozen collection column. |
default CreateIndex |
andColumnFull(String columnName)
Shortcut for
andColumnFull(CqlIdentifier.fromCql(columnName) . |
default CreateIndex |
andColumnKeys(CqlIdentifier columnName)
Specifies to create the index on the given columns' keys, this must be done against a
map
column. |
default CreateIndex |
andColumnKeys(String columnName)
Shortcut for
andColumnKeys(CqlIdentifier.fromCql(columnName) . |
default CreateIndex |
andColumnValues(CqlIdentifier columnName)
Specifies to create the index on the given columns' values, this must be done against a
map column. |
default CreateIndex |
andColumnValues(String columnName)
Shortcut for
andColumnValues(CqlIdentifier.fromCql(columnName) . |
@NonNull default CreateIndex andColumn(@NonNull CqlIdentifier columnName)
@NonNull default CreateIndex andColumn(@NonNull String columnName)
andColumn(CqlIdentifier.fromCql(columnName)
.@NonNull default CreateIndex andColumnKeys(@NonNull CqlIdentifier columnName)
map
column.@NonNull default CreateIndex andColumnKeys(@NonNull String columnName)
andColumnKeys(CqlIdentifier.fromCql(columnName)
.@NonNull default CreateIndex andColumnValues(@NonNull CqlIdentifier columnName)
map
column.@NonNull default CreateIndex andColumnValues(@NonNull String columnName)
andColumnValues(CqlIdentifier.fromCql(columnName)
.@NonNull default CreateIndex andColumnEntries(@NonNull CqlIdentifier columnName)
map
column.@NonNull default CreateIndex andColumnEntries(@NonNull String columnName)
andColumnEntries(CqlIdentifier.fromCql(columnName)
.@NonNull default CreateIndex andColumnFull(@NonNull CqlIdentifier columnName)
frozen
collection column.@NonNull default CreateIndex andColumnFull(@NonNull String columnName)
andColumnFull(CqlIdentifier.fromCql(columnName)
.@NonNull CreateIndex andColumn(@NonNull CqlIdentifier columnName, @Nullable String indexType)
@NonNull default CreateIndex andColumn(@NonNull String columnName, @NonNull String indexType)
andColumn(CqlIdentifier.fromCql(columnName),indexType
.Copyright © 2017–2022. All rights reserved.