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 AlterIndexOnStepDSLContext. alterIndex(Index index)Create a new DSLALTER INDEXstatement.@NotNull AlterIndexStepDSLContext. alterIndexIfExists(Index index)Create a new DSLALTER INDEXstatement.@NotNull CreateIndexStepDSLContext. createIndex(Index index)Create a new DSLCREATE INDEXstatement.@NotNull CreateIndexStepDSLContext. createIndexIfNotExists(Index index)Create a new DSLCREATE INDEX IF NOT EXISTSstatement.@NotNull CreateIndexStepDSLContext. createUniqueIndex(Index index)Create a new DSLCREATE UNIQUE INDEXstatement.@NotNull CreateIndexStepDSLContext. createUniqueIndexIfNotExists(Index index)Create a new DSLCREATE UNIQUE INDEXstatement.@NotNull DropIndexOnStepDSLContext. dropIndex(Index index)Create a new DSLDROP INDEXstatement.@NotNull DropIndexOnStepDSLContext. dropIndexIfExists(Index index)Create a new DSLDROP INDEX IF EXISTSstatement.@NotNull CreateTableIndexStepCreateTableIndexStep. index(Index index)Add an index to the table.@NotNull CreateTableIndexStepCreateTableIndexStep. indexes(Index... indexes)Add indexes to the table.@NotNull AlterTableRenameIndexToStepAlterTableStep. renameIndex(Index oldName)Add aRENAME INDEXclause to theALTER TABLEstatement.@NotNull AlterIndexFinalStepAlterIndexStep. renameTo(Index newName)Add aRENAME TOclause to theALTER INDEXstatement.@NotNull AlterTableFinalStepAlterTableRenameIndexToStep. to(Index newName)Specify a new index name.@NotNull 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 @NotNull MetaMeta. filterIndexes(Meta.Predicate<? super Index> filter)Create a wrapperMetainstance filtering out some indexes.@NotNull 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 @NotNull IndexInternal. createIndex(String name, Table<?> table, OrderField<?>[] sortFields, boolean unique)Deprecated.- 3.14.0 - [#9404] - Please re-generate your code.static @NotNull IndexInternal. createIndex(Name name, Table<?> table, OrderField<?>[] sortFields, boolean unique)Factory method for indexes.static @NotNull 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 @NotNull AlterIndexOnStepDSL. alterIndex(Index index)Create a new DSLALTER INDEXstatement.AlterIndexStepDefaultDSLContext. alterIndexIfExists(Index index)static @NotNull AlterIndexStepDSL. alterIndexIfExists(Index index)Create a new DSLALTER INDEXstatement.CreateIndexStepDefaultDSLContext. createIndex(Index index)static @NotNull CreateIndexStepDSL. createIndex(Index index)Create a new DSLCREATE INDEXstatement.CreateIndexStepDefaultDSLContext. createIndexIfNotExists(Index index)static @NotNull CreateIndexStepDSL. createIndexIfNotExists(Index index)Create a new DSLCREATE INDEX IF NOT EXISTSstatement.CreateIndexStepDefaultDSLContext. createUniqueIndex(Index index)static @NotNull CreateIndexStepDSL. createUniqueIndex(Index index)Create a new DSLCREATE UNIQUE INDEXstatement.CreateIndexStepDefaultDSLContext. createUniqueIndexIfNotExists(Index index)static @NotNull CreateIndexStepDSL. createUniqueIndexIfNotExists(Index index)Create a new DSLCREATE UNIQUE INDEX IF NOT EXISTSstatement.DropIndexOnStepDefaultDSLContext. dropIndex(Index index)static @NotNull DropIndexOnStepDSL. dropIndex(Index index)Create a new DSLDROP INDEXstatement.DropIndexOnStepDefaultDSLContext. dropIndexIfExists(Index index)static @NotNull DropIndexOnStepDSL. dropIndexIfExists(Index index)Create a new DSLDROP INDEX IF EXISTSstatement.
-