- All Superinterfaces:
Named
,QueryPart
,Serializable
A DDL index definition.
Instances can be created using DSL.index(Name)
and overloads.
- Author:
- Lukas Eder
-
Method Summary
Modifier and TypeMethodDescriptionThe sort field expressions on which this index is defined.@Nullable Table<?>
getTable()
The table on which this index is defined.boolean
Whether this is aUNIQUE
index.@Nullable Condition
getWhere()
The condition of a filtered / partial index, ornull
, if this is an ordinary index.Methods inherited from interface org.jooq.Named
getComment, getCommentPart, getName, getQualifiedName, getUnqualifiedName
-
Method Details
-
getTable
The table on which this index is defined. -
getFields
The sort field expressions on which this index is defined. -
getWhere
The condition of a filtered / partial index, ornull
, if this is an ordinary index. -
getUnique
boolean getUnique()Whether this is aUNIQUE
index.
-