com.remedy.arsys.api
Class EntryKey

java.lang.Object
  |
  +--com.remedy.arsys.api.EntryKey
All Implemented Interfaces:
java.lang.Cloneable, java.io.Serializable

public class EntryKey
extends java.lang.Object
implements java.lang.Cloneable, java.io.Serializable

The EntryKey class uniquely identifies a field entry ID.

See Also:
Serialized Form

Constructor Summary
EntryKey()
           
EntryKey(NameID schemaID, EntryID entryID)
          Constructor using name of the schema NameID and entryID EntryID object of class
EntryKey(NameID schemaID, JoinEntryID entryID)
          Constructor using name of the schema NameID and joinentryID JoinEntryID object of class
 
Method Summary
 java.lang.Object clone()
          Clone implementation that returns an Object with data cloned from self.
 boolean equals(java.lang.Object anObject)
          Use this method for checking equality of EntryKey.
 EntryID getEntryID()
          Returns field entry ID.
 NameID getSchemaID()
          Returns schema ID.
 int hashCode()
          This method can be used to populate a hash table.
 void setEntryID(EntryID entryID)
          Sets entry ID.
 void setSchemaID(NameID schemaID)
          Sets schema ID.
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

EntryKey

public EntryKey()

EntryKey

public EntryKey(NameID schemaID,
                EntryID entryID)
Constructor using name of the schema NameID and entryID EntryID object of class

EntryKey

public EntryKey(NameID schemaID,
                JoinEntryID entryID)
Constructor using name of the schema NameID and joinentryID JoinEntryID object of class
Method Detail

clone

public java.lang.Object clone()
                       throws java.lang.CloneNotSupportedException
Clone implementation that returns an Object with data cloned from self.
Overrides:
clone in class java.lang.Object

getEntryID

public EntryID getEntryID()
Returns field entry ID.

getSchemaID

public NameID getSchemaID()
Returns schema ID.

setSchemaID

public void setSchemaID(NameID schemaID)
Sets schema ID.

setEntryID

public void setEntryID(EntryID entryID)
Sets entry ID.

equals

public boolean equals(java.lang.Object anObject)
Use this method for checking equality of EntryKey.
Overrides:
equals in class java.lang.Object

hashCode

public int hashCode()
This method can be used to populate a hash table. Implicitly used method to test equality of objects.
Overrides:
hashCode in class java.lang.Object