| java.lang.Object org.apache.derby.impl.sql.catalog.TableKey
TableKey | final class TableKey (Code) | | A TableKey represents a immutable unique identifier for a SQL object.
It has a schemaid and a name .
author: Jamie -- lifed from Comp/TableName |
Constructor Summary | |
| TableKey(UUID schemaUUID, String tableName) Constructor for when you have both the table and schema names. |
Method Summary | |
public boolean | equals(Object otherTableKey) 2 TableKeys are equal if their both their schemaIds and tableNames are
equal.
Parameters: otherTableKey - The other TableKey, as Object. | UUID | getSchemaId() Get the schema id. | String | getTableName() Get the table name (without the schema name). | public int | hashCode() |
TableKey | TableKey(UUID schemaUUID, String tableName)(Code) | | Constructor for when you have both the table and schema names.
Parameters: schemaUUID - The UUID of the schema being referecned Parameters: tableName - The name of the table being referenced |
equals | public boolean equals(Object otherTableKey)(Code) | | 2 TableKeys are equal if their both their schemaIds and tableNames are
equal.
Parameters: otherTableKey - The other TableKey, as Object. boolean Whether or not the 2 TableKey are equal. |
getSchemaId | UUID getSchemaId()(Code) | | Get the schema id.
Schema id as a String |
getTableName | String getTableName()(Code) | | Get the table name (without the schema name).
Table name as a String |
hashCode | public int hashCode()(Code) | | |
|
|