Class PrimaryKeyInfo
- java.lang.Object
-
- org.datanucleus.store.rdbms.schema.PrimaryKeyInfo
-
- All Implemented Interfaces:
org.datanucleus.store.schema.StoreSchemaData
public class PrimaryKeyInfo extends java.lang.Object implements org.datanucleus.store.schema.StoreSchemaDataRepresents the metadata of a specific primary key column. Supports the following properties.- table_cat
- table_schem
- table_name
- column_name
- key_seq
- pk_name
-
-
Field Summary
Fields Modifier and Type Field Description private inthashHashcode.(package private) java.util.Map<java.lang.String,java.lang.Object>propertiesProperties of the primary-key.
-
Constructor Summary
Constructors Constructor Description PrimaryKeyInfo(java.sql.ResultSet rs)Constructs a primary key information object from the current row of the given result set.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddProperty(java.lang.String name, java.lang.Object value)Method to add a property for the PK.booleanequals(java.lang.Object obj)Indicates whether some object is "equal to" this one.java.lang.ObjectgetProperty(java.lang.String name)Accessor for a property.inthashCode()Returns a hash code value for this object.java.lang.StringtoString()Returns the string representation of this object.
-
-
-
Constructor Detail
-
PrimaryKeyInfo
public PrimaryKeyInfo(java.sql.ResultSet rs)
Constructs a primary key information object from the current row of the given result set. TheResultSetobject passed must have been obtained from a call to java.sql.DatabaseMetaData.getPrimaryKeys().- Parameters:
rs- The result set returned from java.sql.DatabaseMetaData.getPrimaryKeys().- Throws:
org.datanucleus.exceptions.NucleusDataStoreException- if an exception occurs during retrieval
-
-
Method Detail
-
addProperty
public void addProperty(java.lang.String name, java.lang.Object value)Method to add a property for the PK.- Specified by:
addPropertyin interfaceorg.datanucleus.store.schema.StoreSchemaData- Parameters:
name- Name of propertyvalue- Its value
-
getProperty
public java.lang.Object getProperty(java.lang.String name)
Accessor for a property.- Specified by:
getPropertyin interfaceorg.datanucleus.store.schema.StoreSchemaData- Parameters:
name- Name of the property- Returns:
- Its value, or null if not defined
-
equals
public final boolean equals(java.lang.Object obj)
Indicates whether some object is "equal to" this one. Two PrimaryKeyInfo objects are considered equal if their catalog, schema, table, and column names are all equal.- Overrides:
equalsin classjava.lang.Object- Parameters:
obj- the reference object with which to compare- Returns:
- Whether they are equal
-
hashCode
public final int hashCode()
Returns a hash code value for this object.- Overrides:
hashCodein classjava.lang.Object- Returns:
- a hash code value for this object.
-
toString
public java.lang.String toString()
Returns the string representation of this object.- Overrides:
toStringin classjava.lang.Object- Returns:
- string representation of this object.
-
-