Class CharIdentity
java.lang.Object
javax.jdo.identity.SingleFieldIdentity
javax.jdo.identity.CharIdentity
- All Implemented Interfaces:
Externalizable, Serializable, Comparable
This class is for identity with a single character field.
- Version:
- 2.0
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate charThe key.private static I18NHelperThe Internationalization message helper.Fields inherited from class SingleFieldIdentity
hashCode, keyAsObject -
Constructor Summary
ConstructorsConstructorDescriptionConstructor only for Externalizable.CharIdentity(Class pcClass, char key) Constructor with class and key.CharIdentity(Class pcClass, Character key) Constructor with class and key.CharIdentity(Class pcClass, String str) Constructor with class and key. -
Method Summary
Modifier and TypeMethodDescriptionintDetermine the ordering of identity objects.private voidprivate voidconstruct(char key) protected ObjectCreate the key as an Object.booleanDetermine if the other object represents the same object id.chargetKey()Return the key.voidRead this object.toString()Return the String form of the key.voidWrite this object.Methods inherited from class SingleFieldIdentity
assertKeyNotNull, compare, getKeyAsObject, getTargetClass, getTargetClassName, hashClassName, hashCode, setKeyAsObject
-
Field Details
-
msg
The Internationalization message helper. -
key
private char keyThe key.
-
-
Constructor Details
-
CharIdentity
Constructor with class and key.- Parameters:
pcClass- the target classkey- the key
-
CharIdentity
-
CharIdentity
-
CharIdentity
public CharIdentity()Constructor only for Externalizable.
-
-
Method Details
-
construct
private void construct(char key) -
getKey
public char getKey()Return the key.- Returns:
- the key
-
toString
-
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
-
createKeyAsObject
Create the key as an Object.- Overrides:
createKeyAsObjectin classSingleFieldIdentity- Returns:
- the key as an Object
- Since:
- 2.0
-
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
-
computeHashCode
private void computeHashCode()
-