Interface IndexInformation
-
- All Known Implementing Classes:
IndexInformationImpl
public interface IndexInformation
Provides access to information about existing index in the database
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<ColumnInformation>
getIndexedColumns()
Obtain the columns indexed under this index.Identifier
getIndexIdentifier()
Obtain the identifier for this index.
-
-
-
Method Detail
-
getIndexIdentifier
Identifier getIndexIdentifier()
Obtain the identifier for this index.- Returns:
- The index identifier.
-
getIndexedColumns
List<ColumnInformation> getIndexedColumns()
Obtain the columns indexed under this index. Returned in sequential order.- Returns:
- The columns
-
-