Class TableRegularIndexDefinition

java.lang.Object
com.datastax.astra.client.tables.definition.indexes.TableIndexDefinition<TableIndexDefinitionOptions>
com.datastax.astra.client.tables.definition.indexes.TableRegularIndexDefinition

public class TableRegularIndexDefinition extends TableIndexDefinition<TableIndexDefinitionOptions>
Represents a definition for table indices, allowing customization of various indexing options. This class provides a fluent interface to configure column names and index properties such as ASCII encoding, normalization, and case sensitivity.

Example usage:

 
 TableIndexDefinition indexDefinition = new TableIndexDefinition()
     .column("username")
     .ascii(true)
     .normalize(false)
     .caseSensitive(true);