Uses of Interface
org.jooq.Index
-
Packages that use Index Package Description org.jooq Theorg.jooqpackage contains jOOQ's public API.org.jooq.impl Theorg.jooq.implpackage contains jOOQ's implementation classes. -
-
Uses of Index in org.jooq
Methods in org.jooq that return types with arguments of type Index Modifier and Type Method Description List<Index>Table. getIndexes()Retrieve all of the table's indexes.Methods in org.jooq with parameters of type Index Modifier and Type Method Description AlterIndexOnStepDSLContext. alterIndex(Index index)Create a new DSLALTER INDEXstatement.AlterIndexStepDSLContext. alterIndexIfExists(Index index)Create a new DSLALTER INDEXstatement.CreateIndexStepDSLContext. createIndex(Index index)Create a new DSLCREATE INDEXstatement.CreateIndexStepDSLContext. createIndexIfNotExists(Index index)Create a new DSLCREATE INDEX IF NOT EXISTSstatement.CreateIndexStepDSLContext. createUniqueIndex(Index index)Create a new DSLCREATE UNIQUE INDEXstatement.CreateIndexStepDSLContext. createUniqueIndexIfNotExists(Index index)Create a new DSLCREATE UNIQUE INDEXstatement.DropIndexOnStepDSLContext. dropIndex(Index index)Create a new DSLDROP INDEXstatement.DropIndexOnStepDSLContext. dropIndexIfExists(Index index)Create a new DSLDROP INDEX IF EXISTSstatement.CreateTableIndexStepCreateTableIndexStep. index(Index index)Add an index to the table.CreateTableIndexStepCreateTableIndexStep. indexes(Index... indexes)Add indexes to the table.AlterTableRenameIndexToStepAlterTableStep. renameIndex(Index oldName)Add aRENAME INDEXclause to theALTER TABLEstatement.AlterIndexFinalStepAlterIndexStep. renameTo(Index newName)Add aRENAME TOclause to theALTER INDEXstatement.AlterTableFinalStepAlterTableRenameIndexToStep. to(Index newName)Specify a new index name.AlterTableFinalStepAlterTableUsingIndexStep. usingIndex(Index index)Add theUSING INDEXclause to the statement.Method parameters in org.jooq with type arguments of type Index Modifier and Type Method Description CreateTableIndexStepCreateTableIndexStep. indexes(Collection<? extends Index> indexes)Add indexes to the table. -
Uses of Index in org.jooq.impl
Methods in org.jooq.impl that return Index Modifier and Type Method Description static IndexAbstractKeys. createIndex(String name, Table<?> table, OrderField<?>[] sortFields, boolean unique)Deprecated.- [#6875] [#7158] - 3.11.0 - Please re-generate your codestatic IndexInternal. createIndex(String name, Table<?> table, OrderField<?>[] sortFields, boolean unique)Factory method for indexes.static IndexInternal. createIndex(Name name, Table<?> table, OrderField<?>[] sortFields, boolean unique)Factory method for indexes.static IndexDSL. index(Name name)Create a qualified index reference by name.Methods in org.jooq.impl with parameters of type Index Modifier and Type Method Description AlterIndexOnStepDefaultDSLContext. alterIndex(Index index)static AlterIndexOnStepDSL. alterIndex(Index index)Create a new DSLALTER INDEXstatement.AlterIndexStepDefaultDSLContext. alterIndexIfExists(Index index)static AlterIndexStepDSL. alterIndexIfExists(Index index)Create a new DSLALTER INDEXstatement.CreateIndexStepDefaultDSLContext. createIndex(Index index)static CreateIndexStepDSL. createIndex(Index index)Create a new DSLCREATE INDEXstatement.CreateIndexStepDefaultDSLContext. createIndexIfNotExists(Index index)static CreateIndexStepDSL. createIndexIfNotExists(Index index)Create a new DSLCREATE INDEX IF NOT EXISTSstatement.CreateIndexStepDefaultDSLContext. createUniqueIndex(Index index)static CreateIndexStepDSL. createUniqueIndex(Index index)Create a new DSLCREATE UNIQUE INDEXstatement.CreateIndexStepDefaultDSLContext. createUniqueIndexIfNotExists(Index index)static CreateIndexStepDSL. createUniqueIndexIfNotExists(Index index)Create a new DSLCREATE UNIQUE INDEX IF NOT EXISTSstatement.DropIndexOnStepDefaultDSLContext. dropIndex(Index index)static DropIndexOnStepDSL. dropIndex(Index index)Create a new DSLDROP INDEXstatement.DropIndexOnStepDefaultDSLContext. dropIndexIfExists(Index index)static DropIndexOnStepDSL. dropIndexIfExists(Index index)Create a new DSLDROP INDEX IF EXISTSstatement.
-