Interface IndexInformation
-
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 java.util.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
java.util.List<ColumnInformation> getIndexedColumns()
Obtain the columns indexed under this index. Returned in sequential order.- Returns:
- The columns
-
-