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 Summary
Modifier and TypeMethodDescriptionReturns the information for each column of this table.name()
Returns the name of this table.Returns the information for the store associated with this table.
-
Method Details
-
name
String name()Returns the name of this table. (TheTable.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
Information.StoreInfo storeInfo()Returns the information for the store associated with this table. It is safe to cast the returned object to theInformation.WRStoreInfo
orInformation.ROStoreInfo
interface if the database is a WR or RO database, respectively.- Returns:
- The store information, never
null
.
-