Class DbIndexInfo


  • public final class DbIndexInfo
    extends Object
    Index information taken from metadata of the database.
    • Constructor Detail

      • DbIndexInfo

        public DbIndexInfo​(String tableName,
                           String indexName,
                           boolean isUnique)
    • Method Detail

      • getTableName

        public String getTableName()
        Table name for which index is defined.
      • getIndexName

        public String getIndexName()
        Index name.
      • isUnique

        public boolean isUnique()
        If the index is unique.
      • getColumnNames

        public List<String> getColumnNames()
        Column names of the index.
      • reflects

        public boolean reflects​(Index ind)