Uses of Interface
org.jooq.Index
-
Packages that use Index Package Description org.jooq This package contains jOOQ's public API.org.jooq.impl This 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 @NotNull List<Index>
Meta. getIndexes()
Get all indexes from the underlying meta data sources.@NotNull 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 @NotNull AlterIndexOnStep
DSLContext. alterIndex(Index index)
Create a new DSLALTER INDEX
statement.@NotNull AlterIndexStep
DSLContext. alterIndexIfExists(Index index)
Create a new DSLALTER INDEX
statement.@NotNull CreateIndexStep
DSLContext. createIndex(Index index)
Create a new DSLCREATE INDEX
statement.@NotNull CreateIndexStep
DSLContext. createIndexIfNotExists(Index index)
Create a new DSLCREATE INDEX IF NOT EXISTS
statement.@NotNull CreateIndexStep
DSLContext. createUniqueIndex(Index index)
Create a new DSLCREATE UNIQUE INDEX
statement.@NotNull CreateIndexStep
DSLContext. createUniqueIndexIfNotExists(Index index)
Create a new DSLCREATE UNIQUE INDEX
statement.@NotNull DropIndexOnStep
DSLContext. dropIndex(Index index)
Create a new DSLDROP INDEX
statement.@NotNull DropIndexOnStep
DSLContext. dropIndexIfExists(Index index)
Create a new DSLDROP INDEX IF EXISTS
statement.@NotNull CreateTableIndexStep
CreateTableIndexStep. index(Index index)
Add an index to the table.@NotNull CreateTableIndexStep
CreateTableIndexStep. indexes(Index... indexes)
Add indexes to the table.@NotNull AlterTableRenameIndexToStep
AlterTableStep. renameIndex(Index oldName)
Add aRENAME INDEX
clause to theALTER TABLE
statement.@NotNull AlterIndexFinalStep
AlterIndexStep. renameTo(Index newName)
Add aRENAME TO
clause to theALTER INDEX
statement.@NotNull AlterTableFinalStep
AlterTableRenameIndexToStep. to(Index newName)
Specify a new index name.@NotNull 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 @NotNull Meta
Meta. filterIndexes(Meta.Predicate<? super Index> filter)
Create a wrapperMeta
instance filtering out some indexes.@NotNull 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 @NotNull Index
Internal. createIndex(String name, Table<?> table, OrderField<?>[] sortFields, boolean unique)
Deprecated.- 3.14.0 - [#9404] - Please re-generate your code.static @NotNull Index
Internal. createIndex(Name name, Table<?> table, OrderField<?>[] sortFields, boolean unique)
Factory method for indexes.static @NotNull 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 @NotNull AlterIndexOnStep
DSL. alterIndex(Index index)
Create a new DSLALTER INDEX
statement.AlterIndexStep
DefaultDSLContext. alterIndexIfExists(Index index)
static @NotNull AlterIndexStep
DSL. alterIndexIfExists(Index index)
Create a new DSLALTER INDEX
statement.CreateIndexStep
DefaultDSLContext. createIndex(Index index)
static @NotNull CreateIndexStep
DSL. createIndex(Index index)
Create a new DSLCREATE INDEX
statement.CreateIndexStep
DefaultDSLContext. createIndexIfNotExists(Index index)
static @NotNull CreateIndexStep
DSL. createIndexIfNotExists(Index index)
Create a new DSLCREATE INDEX IF NOT EXISTS
statement.CreateIndexStep
DefaultDSLContext. createUniqueIndex(Index index)
static @NotNull CreateIndexStep
DSL. createUniqueIndex(Index index)
Create a new DSLCREATE UNIQUE INDEX
statement.CreateIndexStep
DefaultDSLContext. createUniqueIndexIfNotExists(Index index)
static @NotNull CreateIndexStep
DSL. createUniqueIndexIfNotExists(Index index)
Create a new DSLCREATE UNIQUE INDEX IF NOT EXISTS
statement.DropIndexOnStep
DefaultDSLContext. dropIndex(Index index)
static @NotNull DropIndexOnStep
DSL. dropIndex(Index index)
Create a new DSLDROP INDEX
statement.DropIndexOnStep
DefaultDSLContext. dropIndexIfExists(Index index)
static @NotNull DropIndexOnStep
DSL. dropIndexIfExists(Index index)
Create a new DSLDROP INDEX IF EXISTS
statement.
-