-
- All Superinterfaces:
Definition,TableElementDefinition
- All Known Implementing Classes:
AbstractIndexDefinition
public interface IndexDefinition extends TableElementDefinition
An object holding information about an index.- Author:
- Lukas Eder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<IndexColumnDefinition>getIndexColumns()The list of columns making up the index.booleanisUnique()Whether this is a unique index.-
Methods inherited from interface org.jooq.meta.Definition
getCatalog, getComment, getDatabase, getDefinitionPath, getInputName, getName, getOutputName, getOverload, getPackage, getQualifiedInputName, getQualifiedInputNamePart, getQualifiedName, getQualifiedNamePart, getQualifiedOutputName, getQualifiedOutputNamePart, getSchema, getSource
-
Methods inherited from interface org.jooq.meta.TableElementDefinition
getTable
-
-
-
-
Method Detail
-
getIndexColumns
List<IndexColumnDefinition> getIndexColumns()
The list of columns making up the index.
-
isUnique
boolean isUnique()
Whether this is a unique index.
-
-