Class ObjectIdentity
java.lang.Object
javax.jdo.identity.SingleFieldIdentity
javax.jdo.identity.ObjectIdentity
- All Implemented Interfaces:
Externalizable, Serializable, Comparable
This class is for identity with a single Object type field.
- Version:
- 2.0
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static JDOImplHelperThe JDOImplHelper instance used for parsing the String to an Object.private static final StringThe delimiter for String constructor.Fields inherited from class SingleFieldIdentity
hashCode, keyAsObject, msg -
Constructor Summary
ConstructorsConstructorDescriptionConstructor only for Externalizable.ObjectIdentity(Class pcClass, Object param) Constructor with class and key. -
Method Summary
Methods inherited from class SingleFieldIdentity
assertKeyNotNull, compare, createKeyAsObject, getKeyAsObject, getTargetClass, getTargetClassName, hashClassName, hashCode, setKeyAsObject
-
Field Details
-
helper
The JDOImplHelper instance used for parsing the String to an Object. -
STRING_DELIMITER
-
-
Constructor Details
-
ObjectIdentity
-
ObjectIdentity
public ObjectIdentity()Constructor only for Externalizable.
-
-
Method Details
-
getKey
-
toString
Return the String form of the object id. The class of the object id is written as the first part of the result so that the class can be reconstructed later. Then the toString of the key instance is appended. During construction, this process is reversed. The class is extracted from the first part of the String, and the String constructor of the key is used to construct the key itself. -
equals
Determine if the other object represents the same object id.- Overrides:
equalsin classSingleFieldIdentity- Parameters:
obj- the other object- Returns:
- true if both objects represent the same object id
-
compareTo
Determine the ordering of identity objects.- Parameters:
o- Other identity- Returns:
- The relative ordering between the objects
- Since:
- 2.2
-
writeExternal
Write this object. Write the superclass first.- Specified by:
writeExternalin interfaceExternalizable- Overrides:
writeExternalin classSingleFieldIdentity- Parameters:
out- the output- Throws:
IOException
-
readExternal
Read this object. Read the superclass first.- Specified by:
readExternalin interfaceExternalizable- Overrides:
readExternalin classSingleFieldIdentity- Parameters:
in- the input- Throws:
IOExceptionClassNotFoundException
-