Package acdp

Interface Information.TableInfo

Enclosing interface:
Information

public static interface Information.TableInfo
The table info comprises some useful information about a table, including all values from the table layout.
Author:
Beat Hörmann
  • Method Details

    • name

      String name()
      Returns the name of this table. (The Table.name() method returns the same value.)

      This property is registered in the table layout.

      Returns:
      The name of this table, never null and never an empty string.
    • columnInfos

      Information.ColumnInfo[] columnInfos()
      Returns the information for each column of this table.
      Returns:
      The information for each column of this table, never null and never empty. The array is sorted according to the order defined by the table definition.
    • storeInfo

      Returns the information for the store associated with this table. It is safe to cast the returned object to the Information.WRStoreInfo or Information.ROStoreInfo interface if the database is a WR or RO database, respectively.
      Returns:
      The store information, never null.