Package org.jooq.meta

Interface IndexColumnDefinition

All Superinterfaces:
Definition, PositionedDefinition, TypedElementDefinition<IndexDefinition>
All Known Implementing Classes:
DefaultIndexColumnDefinition

public interface IndexColumnDefinition extends TypedElementDefinition<IndexDefinition>, PositionedDefinition
An interface defining a column of an index.
Author:
Lukas Eder
  • Method Details

    • getSortOrder

      SortOrder getSortOrder()
      The ASC or DESC sort order
    • getColumn

      ColumnDefinition getColumn()
      The table column definition that this index column definition is backed by.

      This may be a virtual and/or invisible column, e.g. in case this index is a function-based index.