Class TableInformation
- java.lang.Object
-
- org.apache.ignite.internal.processors.query.TableInformation
-
public class TableInformation extends Object
Information about table.
-
-
Constructor Summary
Constructors Constructor Description TableInformation(String schemaName, String tblName, String tblType)TableInformation(String schemaName, String tblName, String tblType, int cacheGrpId, String cacheGrpName, int cacheId, String cacheName, String affinityKeyCol, String keyAlias, String valAlias, String keyTypeName, String valTypeName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description @Nullable StringaffinityKeyColumn()intcacheGrpId()StringcacheGrpName()intcacheId()StringcacheName()booleanequals(Object o)inthashCode()StringkeyAlias()StringkeyTypeName()StringschemaName()StringtableName()StringtableType()StringtoString()StringvalueAlias()StringvalueTypeName()
-
-
-
Constructor Detail
-
TableInformation
public TableInformation(String schemaName, String tblName, String tblType, int cacheGrpId, String cacheGrpName, int cacheId, String cacheName, String affinityKeyCol, String keyAlias, String valAlias, String keyTypeName, String valTypeName)
- Parameters:
schemaName- Schema name.tblName- Table name.tblType- Table type.cacheGrpId- Cache group id.cacheGrpName- Cache group name.cacheId- Cache id.cacheName- Cache name.affinityKeyCol- Affinity key column name.keyAlias- Key alias.valAlias- Value alias.keyTypeName- Key type name.valTypeName- Value type name.
-
-
Method Detail
-
schemaName
public String schemaName()
- Returns:
- Schema name.
-
tableName
public String tableName()
- Returns:
- Table name.
-
tableType
public String tableType()
- Returns:
- Table type.
-
cacheGrpId
public int cacheGrpId()
- Returns:
- Cache Group id or
-1if not applicable.
-
cacheGrpName
public String cacheGrpName()
- Returns:
- Cache group name or
nullif not applicable.
-
cacheId
public int cacheId()
- Returns:
- Cache id or
-1if not applicable.
-
cacheName
public String cacheName()
- Returns:
- Cache name or
nullif not applicable.
-
affinityKeyColumn
@Nullable public @Nullable String affinityKeyColumn()
- Returns:
- Affinity key column name or
nullif not applicable.
-
keyAlias
public String keyAlias()
- Returns:
- Key alias or
nullif not applicable.
-
valueAlias
public String valueAlias()
- Returns:
- Value alias or
nullif not applicable.
-
keyTypeName
public String keyTypeName()
- Returns:
- Key type name or
nullif not applicable.
-
valueTypeName
public String valueTypeName()
- Returns:
- Value type name or
nullif not applicable.
-
-