Uses of Interface
org.jooq.Index
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of Index in org.jooq
Modifier and TypeMethodDescriptionMeta.getIndexes()
Get all indexes from the underlying meta data sources.Meta.getIndexes
(String name) Get all indexes from the underlying meta data sources.Meta.getIndexes
(Name name) Get all indexes from the underlying meta data sources.Schema.getIndexes()
List all indexes contained in this schema.Schema.getIndexes
(String name) Get indexes by their name (case-sensitive) in this schema.Schema.getIndexes
(Name name) Get indexes by their qualified or unqualified name in this schema.Table.getIndexes()
Retrieve all of the table's indexes.Schema.indexStream()
Stream all indexes contained in this schema.Modifier and TypeMethodDescription@NotNull AlterIndexOnStep
DSLContext.alterIndex
(Index index) TheALTER INDEX
statement.@NotNull AlterIndexOnStep
DSLContext.alterIndexIfExists
(Index index) TheALTER INDEX IF EXISTS
statement.@NotNull CreateIndexStep
DSLContext.createIndex
(Index index) TheCREATE INDEX
statement.@NotNull CreateIndexStep
DSLContext.createIndexIfNotExists
(Index index) TheCREATE INDEX IF NOT EXISTS
statement.@NotNull CreateIndexStep
DSLContext.createUniqueIndex
(Index index) TheCREATE UNIQUE INDEX
statement.@NotNull CreateIndexStep
DSLContext.createUniqueIndexIfNotExists
(Index index) TheCREATE UNIQUE INDEX IF NOT EXISTS
statement.@NotNull DropIndexOnStep
TheDROP INDEX
statement.@NotNull DropIndexOnStep
DSLContext.dropIndexIfExists
(Index index) TheDROP INDEX IF EXISTS
statement.@NotNull CreateTableElementListStep
Add theINDEX
clause to theCREATE TABLE
statement.@NotNull CreateTableElementListStep
Add theINDEXES
clause to theCREATE TABLE
statement.@NotNull AlterTableRenameIndexToStep
AlterTableStep.renameIndex
(Index oldName) Add aRENAME INDEX
clause to theALTER TABLE
statement.@NotNull AlterIndexFinalStep
Add theRENAME TO
clause to theALTER INDEX
statement.@NotNull AlterTableFinalStep
Specify a new index name.@NotNull AlterTableFinalStep
AlterTableUsingIndexStep.usingIndex
(Index index) Add theUSING INDEX
clause to the statement.Modifier and TypeMethodDescription@NotNull Meta
Meta.filterIndexes
(Predicate<? super Index> filter) Create a wrapperMeta
instance filtering out some indexes.@NotNull CreateTableElementListStep
CreateTableElementListStep.indexes
(Collection<? extends Index> indexes) Add theINDEXES
clause to theCREATE TABLE
statement. -
Uses of Index in org.jooq.impl
Modifier and TypeMethodDescription@NotNull Index
QOM.AlterIndex.$index()
@Nullable Index
QOM.CreateIndex.$index()
@NotNull Index
QOM.DropIndex.$index()
@NotNull Index
QOM.AlterIndex.$renameTo()
static Index
AbstractKeys.createIndex
(String name, Table<?> table, OrderField<?>[] sortFields, boolean unique) Deprecated.- [#6875] [#7158] - 3.11.0 - Please re-generate your codestatic final @NotNull Index
Internal.createIndex
(String name, Table<?> table, OrderField<?>[] sortFields, boolean unique) Deprecated, for removal: This API element is subject to removal in a future version.- 3.14.0 - [#9404] - Please re-generate your code.static final @NotNull Index
Internal.createIndex
(Name name, Table<?> table, OrderField<?>[] sortFields, boolean unique) Factory method for indexes.static @NotNull Index
Create a qualified index reference by name.Modifier and TypeMethodDescriptionLazySchema.getIndexes()
LazySchema.getIndexes
(String name) LazySchema.getIndexes
(Name name) SchemaImpl.getIndexes()
List all indexes contained in this schema.SchemaImpl.getIndexes
(String name) SchemaImpl.getIndexes
(Name name) LazySchema.indexStream()
SchemaImpl.indexStream()
Modifier and TypeMethodDescription@NotNull QOM.AlterIndex
@NotNull QOM.CreateIndex
@NotNull QOM.DropIndex
@NotNull QOM.AlterIndex
DefaultDSLContext.alterIndex
(Index index) static AlterIndexOnStep
DSL.alterIndex
(Index index) TheALTER INDEX
statement.DefaultDSLContext.alterIndexIfExists
(Index index) static AlterIndexOnStep
DSL.alterIndexIfExists
(Index index) TheALTER INDEX IF EXISTS
statement.DefaultDSLContext.createIndex
(Index index) static CreateIndexStep
DSL.createIndex
(Index index) TheCREATE INDEX
statement.DefaultDSLContext.createIndexIfNotExists
(Index index) static CreateIndexStep
DSL.createIndexIfNotExists
(Index index) TheCREATE INDEX IF NOT EXISTS
statement.DefaultDSLContext.createUniqueIndex
(Index index) static CreateIndexStep
DSL.createUniqueIndex
(Index index) TheCREATE UNIQUE INDEX
statement.DefaultDSLContext.createUniqueIndexIfNotExists
(Index index) static CreateIndexStep
DSL.createUniqueIndexIfNotExists
(Index index) TheCREATE UNIQUE INDEX IF NOT EXISTS
statement.static DropIndexOnStep
TheDROP INDEX
statement.DefaultDSLContext.dropIndexIfExists
(Index index) static DropIndexOnStep
DSL.dropIndexIfExists
(Index index) TheDROP INDEX IF EXISTS
statement.