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