Uses of Interface
org.jooq.Index
-
Packages that use Index Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.impl Theorg.jooq.impl
package 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>
Meta. getIndexes()
Get all indexes from the underlying meta data sources.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 AlterIndexOnStep
DSLContext. alterIndex(Index index)
Create a new DSLALTER INDEX
statement.AlterIndexStep
DSLContext. alterIndexIfExists(Index index)
Create a new DSLALTER INDEX
statement.CreateIndexStep
DSLContext. createIndex(Index index)
Create a new DSLCREATE INDEX
statement.CreateIndexStep
DSLContext. createIndexIfNotExists(Index index)
Create a new DSLCREATE INDEX IF NOT EXISTS
statement.CreateIndexStep
DSLContext. createUniqueIndex(Index index)
Create a new DSLCREATE UNIQUE INDEX
statement.CreateIndexStep
DSLContext. createUniqueIndexIfNotExists(Index index)
Create a new DSLCREATE UNIQUE INDEX
statement.DropIndexOnStep
DSLContext. dropIndex(Index index)
Create a new DSLDROP INDEX
statement.DropIndexOnStep
DSLContext. dropIndexIfExists(Index index)
Create a new DSLDROP INDEX IF EXISTS
statement.CreateTableIndexStep
CreateTableIndexStep. index(Index index)
Add an index to the table.CreateTableIndexStep
CreateTableIndexStep. indexes(Index... indexes)
Add indexes to the table.AlterTableRenameIndexToStep
AlterTableStep. renameIndex(Index oldName)
Add aRENAME INDEX
clause to theALTER TABLE
statement.AlterIndexFinalStep
AlterIndexStep. renameTo(Index newName)
Add aRENAME TO
clause to theALTER INDEX
statement.AlterTableFinalStep
AlterTableRenameIndexToStep. to(Index newName)
Specify a new index name.AlterTableFinalStep
AlterTableUsingIndexStep. usingIndex(Index index)
Add theUSING INDEX
clause to the statement.Method parameters in org.jooq with type arguments of type Index Modifier and Type Method Description CreateTableIndexStep
CreateTableIndexStep. 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 Index
AbstractKeys. createIndex(String name, Table<?> table, OrderField<?>[] sortFields, boolean unique)
Deprecated.- [#6875] [#7158] - 3.11.0 - Please re-generate your codestatic Index
Internal. createIndex(String name, Table<?> table, OrderField<?>[] sortFields, boolean unique)
Factory method for indexes.static Index
Internal. createIndex(Name name, Table<?> table, OrderField<?>[] sortFields, boolean unique)
Factory method for indexes.static Index
DSL. 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 AlterIndexOnStep
DefaultDSLContext. alterIndex(Index index)
static AlterIndexOnStep
DSL. alterIndex(Index index)
Create a new DSLALTER INDEX
statement.AlterIndexStep
DefaultDSLContext. alterIndexIfExists(Index index)
static AlterIndexStep
DSL. alterIndexIfExists(Index index)
Create a new DSLALTER INDEX
statement.CreateIndexStep
DefaultDSLContext. createIndex(Index index)
static CreateIndexStep
DSL. createIndex(Index index)
Create a new DSLCREATE INDEX
statement.CreateIndexStep
DefaultDSLContext. createIndexIfNotExists(Index index)
static CreateIndexStep
DSL. createIndexIfNotExists(Index index)
Create a new DSLCREATE INDEX IF NOT EXISTS
statement.CreateIndexStep
DefaultDSLContext. createUniqueIndex(Index index)
static CreateIndexStep
DSL. createUniqueIndex(Index index)
Create a new DSLCREATE UNIQUE INDEX
statement.CreateIndexStep
DefaultDSLContext. createUniqueIndexIfNotExists(Index index)
static CreateIndexStep
DSL. createUniqueIndexIfNotExists(Index index)
Create a new DSLCREATE UNIQUE INDEX IF NOT EXISTS
statement.DropIndexOnStep
DefaultDSLContext. dropIndex(Index index)
static DropIndexOnStep
DSL. dropIndex(Index index)
Create a new DSLDROP INDEX
statement.DropIndexOnStep
DefaultDSLContext. dropIndexIfExists(Index index)
static DropIndexOnStep
DSL. dropIndexIfExists(Index index)
Create a new DSLDROP INDEX IF EXISTS
statement.
-