Package javax.jdo.identity
Class ByteIdentity
- java.lang.Object
-
- javax.jdo.identity.SingleFieldIdentity
-
- javax.jdo.identity.ByteIdentity
-
- All Implemented Interfaces:
java.io.Externalizable,java.io.Serializable,java.lang.Comparable
public class ByteIdentity extends SingleFieldIdentity
This class is for identity with a single byte field.- Version:
- 2.0
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private bytekeyThe key.-
Fields inherited from class javax.jdo.identity.SingleFieldIdentity
hashCode, keyAsObject, msg
-
-
Constructor Summary
Constructors Constructor Description ByteIdentity()Constructor only for Externalizable.ByteIdentity(java.lang.Class pcClass, byte key)Constructor with class and key.ByteIdentity(java.lang.Class pcClass, java.lang.Byte key)Constructor with class and key.ByteIdentity(java.lang.Class pcClass, java.lang.String str)Constructor with class and key.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareTo(java.lang.Object o)Determine the ordering of identity objects.private voidconstruct(byte key)Construct this instance with the key value.protected java.lang.ObjectcreateKeyAsObject()Create the key as an Object.booleanequals(java.lang.Object obj)Determine if the other object represents the same object id.bytegetKey()Return the key.voidreadExternal(java.io.ObjectInput in)Read this object.java.lang.StringtoString()Return the String version of the key.voidwriteExternal(java.io.ObjectOutput out)Write this object.-
Methods inherited from class javax.jdo.identity.SingleFieldIdentity
assertKeyNotNull, compare, getKeyAsObject, getTargetClass, getTargetClassName, hashClassName, hashCode, setKeyAsObject
-
-
-
-
Constructor Detail
-
ByteIdentity
public ByteIdentity(java.lang.Class pcClass, byte key)Constructor with class and key.- Parameters:
pcClass- the target classkey- the key
-
ByteIdentity
public ByteIdentity(java.lang.Class pcClass, java.lang.Byte key)Constructor with class and key.- Parameters:
pcClass- the target classkey- the key
-
ByteIdentity
public ByteIdentity(java.lang.Class pcClass, java.lang.String str)Constructor with class and key.- Parameters:
pcClass- the target classstr- the key
-
ByteIdentity
public ByteIdentity()
Constructor only for Externalizable.
-
-
Method Detail
-
construct
private void construct(byte key)
Construct this instance with the key value.
-
getKey
public byte getKey()
Return the key.- Returns:
- the key
-
toString
public java.lang.String toString()
Return the String version of the key.- Overrides:
toStringin classjava.lang.Object- Returns:
- the key.
-
equals
public boolean equals(java.lang.Object obj)
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
public int compareTo(java.lang.Object o)
Determine the ordering of identity objects.- Parameters:
o- Other identity- Returns:
- The relative ordering between the objects
- Since:
- 2.2
-
createKeyAsObject
protected java.lang.Object createKeyAsObject()
Create the key as an Object.- Overrides:
createKeyAsObjectin classSingleFieldIdentity- Returns:
- the key as an Object
- Since:
- 2.0
-
writeExternal
public void writeExternal(java.io.ObjectOutput out) throws java.io.IOExceptionWrite this object. Write the superclass first.- Specified by:
writeExternalin interfacejava.io.Externalizable- Overrides:
writeExternalin classSingleFieldIdentity- Parameters:
out- the output- Throws:
java.io.IOException
-
readExternal
public void readExternal(java.io.ObjectInput in) throws java.io.IOException, java.lang.ClassNotFoundExceptionRead this object. Read the superclass first.- Specified by:
readExternalin interfacejava.io.Externalizable- Overrides:
readExternalin classSingleFieldIdentity- Parameters:
in- the input- Throws:
java.io.IOExceptionjava.lang.ClassNotFoundException
-
-