Package javax.jdo.identity
Class ByteIdentity
java.lang.Object
javax.jdo.identity.SingleFieldIdentity
javax.jdo.identity.ByteIdentity
- All Implemented Interfaces:
Externalizable
,Serializable
,Comparable
This class is for identity with a single byte field.
- Version:
- 2.0
- See Also:
-
Field Summary
FieldsFields inherited from class javax.jdo.identity.SingleFieldIdentity
hashCode, keyAsObject, msg
-
Constructor Summary
ConstructorsConstructorDescriptionConstructor only for Externalizable.ByteIdentity
(Class pcClass, byte key) Constructor with class and key.ByteIdentity
(Class pcClass, Byte key) Constructor with class and key.ByteIdentity
(Class pcClass, String str) Constructor with class and key. -
Method Summary
Modifier and TypeMethodDescriptionint
Determine the ordering of identity objects.private void
construct
(byte key) Construct this instance with the key value.protected Object
Create the key as an Object.boolean
Determine if the other object represents the same object id.byte
getKey()
Return the key.void
Read this object.toString()
Return the String version of the key.void
Write this object.Methods inherited from class javax.jdo.identity.SingleFieldIdentity
assertKeyNotNull, compare, getKeyAsObject, getTargetClass, getTargetClassName, hashClassName, hashCode, setKeyAsObject
-
Field Details
-
key
private byte keyThe key.
-
-
Constructor Details
-
ByteIdentity
Constructor with class and key.- Parameters:
pcClass
- the target classkey
- the key
-
ByteIdentity
Constructor with class and key.- Parameters:
pcClass
- the target classkey
- the key
-
ByteIdentity
Constructor with class and key.- Parameters:
pcClass
- the target classstr
- the key
-
ByteIdentity
public ByteIdentity()Constructor only for Externalizable.
-
-
Method Details
-
construct
private void construct(byte key) Construct this instance with the key value. -
getKey
public byte getKey()Return the key.- Returns:
- the key
-
toString
Return the String version of the key. -
equals
Determine if the other object represents the same object id.- Overrides:
equals
in 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:
createKeyAsObject
in classSingleFieldIdentity
- Returns:
- the key as an Object
- Since:
- 2.0
-
writeExternal
Write this object. Write the superclass first.- Specified by:
writeExternal
in interfaceExternalizable
- Overrides:
writeExternal
in classSingleFieldIdentity
- Parameters:
out
- the output- Throws:
IOException
-
readExternal
Read this object. Read the superclass first.- Specified by:
readExternal
in interfaceExternalizable
- Overrides:
readExternal
in classSingleFieldIdentity
- Parameters:
in
- the input- Throws:
IOException
ClassNotFoundException
-