Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
org.jooq.impl |
The
org.jooq.impl package contains jOOQ's implementation classes. |
Modifier and Type | Method and Description |
---|---|
java.util.List<Index> |
Table.getIndexes()
Retrieve all of the table's indexes.
|
Modifier and Type | Method and Description |
---|---|
AlterIndexStep |
DSLContext.alterIndex(Index index)
Create a new DSL
ALTER INDEX statement. |
AlterIndexStep |
DSLContext.alterIndexIfExists(Index index)
Create a new DSL
ALTER INDEX statement. |
CreateIndexStep |
DSLContext.createIndex(Index index)
Create a new DSL
CREATE INDEX statement. |
CreateIndexStep |
DSLContext.createIndexIfNotExists(Index index)
Create a new DSL
CREATE INDEX IF NOT EXISTS statement. |
CreateIndexStep |
DSLContext.createUniqueIndex(Index index)
Create a new DSL
CREATE UNIQUE INDEX statement. |
CreateIndexStep |
DSLContext.createUniqueIndexIfNotExists(Index index)
Create a new DSL
CREATE UNIQUE INDEX statement. |
DropIndexOnStep |
DSLContext.dropIndex(Index index)
Create a new DSL
DROP INDEX statement. |
DropIndexOnStep |
DSLContext.dropIndexIfExists(Index index)
Create a new DSL
DROP INDEX IF EXISTS statement. |
AlterTableRenameIndexToStep |
AlterTableStep.renameIndex(Index oldName)
Add a
RENAME INDEX clause to the ALTER TABLE
statement. |
AlterIndexFinalStep |
AlterIndexStep.renameTo(Index newName)
Add a
RENAME TO clause to the ALTER INDEX
statement. |
AlterTableFinalStep |
AlterTableRenameIndexToStep.to(Index newName)
Specify a new index name.
|
AlterTableFinalStep |
AlterTableUsingIndexStep.usingIndex(Index index)
Add the
USING INDEX clause to the statement. |
Modifier and Type | Method and Description |
---|---|
static Index |
Internal.createIndex(java.lang.String name,
Table<?> table,
OrderField<?>[] sortFields,
boolean unique)
Factory method for indexes.
|
static Index |
AbstractKeys.createIndex(java.lang.String name,
Table<?> table,
OrderField<?>[] sortFields,
boolean unique)
Deprecated.
- [#6875] [#7158] - 3.11.0 - Please re-generate your code
|
static Index |
DSL.index(Name name)
Create a qualified index reference by name.
|
Modifier and Type | Method and Description |
---|---|
static AlterIndexStep |
DSL.alterIndex(Index index)
Create a new DSL
ALTER INDEX statement. |
AlterIndexStep |
DefaultDSLContext.alterIndex(Index index) |
static AlterIndexStep |
DSL.alterIndexIfExists(Index index)
Create a new DSL
ALTER INDEX statement. |
AlterIndexStep |
DefaultDSLContext.alterIndexIfExists(Index index) |
static CreateIndexStep |
DSL.createIndex(Index index)
Create a new DSL
CREATE INDEX statement. |
CreateIndexStep |
DefaultDSLContext.createIndex(Index index) |
static CreateIndexStep |
DSL.createIndexIfNotExists(Index index)
Create a new DSL
CREATE INDEX IF NOT EXISTS statement. |
CreateIndexStep |
DefaultDSLContext.createIndexIfNotExists(Index index) |
static CreateIndexStep |
DSL.createUniqueIndex(Index index)
Create a new DSL
CREATE UNIQUE INDEX statement. |
CreateIndexStep |
DefaultDSLContext.createUniqueIndex(Index index) |
static CreateIndexStep |
DSL.createUniqueIndexIfNotExists(Index index)
Create a new DSL
CREATE UNIQUE INDEX IF NOT EXISTS statement. |
CreateIndexStep |
DefaultDSLContext.createUniqueIndexIfNotExists(Index index) |
static DropIndexOnStep |
DSL.dropIndex(Index index)
Create a new DSL
DROP INDEX statement. |
DropIndexOnStep |
DefaultDSLContext.dropIndex(Index index) |
static DropIndexOnStep |
DSL.dropIndexIfExists(Index index)
Create a new DSL
DROP INDEX IF EXISTS statement. |
DropIndexOnStep |
DefaultDSLContext.dropIndexIfExists(Index index) |
Copyright © 2018. All Rights Reserved.