Class DbIndexInfo

java.lang.Object
ru.curs.celesta.dbutils.meta.DbIndexInfo

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

    • DbIndexInfo

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

    • 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.
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • reflects

      public boolean reflects(Index ind)