Uses of Class
com.healthmarketscience.jackcess.IndexBuilder
-
Packages that use IndexBuilder Package Description com.healthmarketscience.jackcess com.healthmarketscience.jackcess.impl -
-
Uses of IndexBuilder in com.healthmarketscience.jackcess
Methods in com.healthmarketscience.jackcess that return IndexBuilder Modifier and Type Method Description IndexBuilderIndexBuilder. addColumns(boolean ascending, String... names)Adds the columns with the given ordering to the index.IndexBuilderIndexBuilder. addColumns(String... names)Adds the columns with ASCENDING ordering to the index.static IndexBuilderDatabaseBuilder. newIndex(String name)Convenience method for constructing an IndexBuilder.static IndexBuilderDatabaseBuilder. newPrimaryKey(String... colNames)Convenience method for constructing a primary key IndexBuilder.IndexBuilderIndexBuilder. setIgnoreNulls()Sets this index to ignore null values.IndexBuilderIndexBuilder. setName(String name)Sets the name of the index.IndexBuilderIndexBuilder. setPrimaryKey()Sets this index to be a primary key index (additionally sets the index as unique and required).IndexBuilderIndexBuilder. setRequired()Sets this index to enforce required.IndexBuilderIndexBuilder. setType(byte type)IndexBuilderIndexBuilder. setUnique()Sets this index to enforce uniqueness.Methods in com.healthmarketscience.jackcess that return types with arguments of type IndexBuilder Modifier and Type Method Description List<IndexBuilder>TableBuilder. getIndexes()Methods in com.healthmarketscience.jackcess with parameters of type IndexBuilder Modifier and Type Method Description TableBuilderTableBuilder. addIndex(IndexBuilder index)Adds an IndexBuilder to the new table.Method parameters in com.healthmarketscience.jackcess with type arguments of type IndexBuilder Modifier and Type Method Description TableBuilderTableBuilder. addIndexes(Collection<? extends IndexBuilder> indexes)Adds the Indexes to the new table. -
Uses of IndexBuilder in com.healthmarketscience.jackcess.impl
Methods in com.healthmarketscience.jackcess.impl that return IndexBuilder Modifier and Type Method Description IndexBuilderTableUpdater. getIndex()Methods in com.healthmarketscience.jackcess.impl that return types with arguments of type IndexBuilder Modifier and Type Method Description List<IndexBuilder>TableCreator. getIndexes()Methods in com.healthmarketscience.jackcess.impl with parameters of type IndexBuilder Modifier and Type Method Description IndexImplTableUpdater. addIndex(IndexBuilder index)IndexImpl.ForeignKeyReferenceTableMutator. getForeignKey(IndexBuilder idx)IndexImpl.ForeignKeyReferenceTableUpdater. getForeignKey(IndexBuilder idx)com.healthmarketscience.jackcess.impl.TableMutator.IndexDataStateTableCreator. getIndexDataState(IndexBuilder idx)abstract com.healthmarketscience.jackcess.impl.TableMutator.IndexDataStateTableMutator. getIndexDataState(IndexBuilder idx)com.healthmarketscience.jackcess.impl.TableMutator.IndexDataStateTableUpdater. getIndexDataState(IndexBuilder idx)
-