- All Superinterfaces:
Named
,QueryPart
,Serializable
,TableElement
A DDL index definition.
Instances can be created using DSL.index(Name)
and overloads.
- Author:
- Lukas Eder
-
Method Summary
Modifier and TypeMethodDescription@Nullable Table<?>
$table()
Experimental query object model accessor method, see alsoQOM
.The 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
$name, 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. -
$table
Experimental query object model accessor method, see alsoQOM
. Subject to change in future jOOQ versions, use at your own risk.
-