7.0 Action Request System Java API

com.remedy.arsys.api
Class JoinEntryID

java.lang.Object
  extended bycom.remedy.arsys.api.EntryID
      extended bycom.remedy.arsys.api.JoinEntryID
All Implemented Interfaces:
java.lang.Cloneable, IARIdentifier, java.io.Serializable

public class JoinEntryID
extends EntryID
implements IARIdentifier

The JoinEntryID class represents the composite Entry ID created when two or more schemas are joined together. When you look at the Entry ID field in a join form entry, the field contains the Entry ID of each underlying entry separated by a vertical bar.

See Also:
Serialized Form

Constructor Summary
JoinEntryID(EntryID[] entryIDs)
           
JoinEntryID(java.lang.String id)
           
 
Method Summary
 void clear()
          Release all variable object references.
 java.lang.Object clone()
          Clone implementation that returns an Object with data cloned from self.
protected  void finalize()
          Clears up all variable object references if it is called, even through there is no guarantee to be called.
 int hashCode()
          Returns the hash code value for this instance of the current class.
 java.lang.String toString()
          Returns a string description of the object.
 
Methods inherited from class com.remedy.arsys.api.EntryID
equals, setValue, toCharArray
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

JoinEntryID

public JoinEntryID(EntryID[] entryIDs)

JoinEntryID

public JoinEntryID(java.lang.String id)
Method Detail

toString

public java.lang.String toString()
Returns a string description of the object.

Overrides:
toString in class EntryID

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 EntryID
Throws:
java.lang.CloneNotSupportedException

hashCode

public int hashCode()
Returns the hash code value for this instance of the current class. This method is supported as required by the general contract of Object.hashCode, for the benefit of hash tables such as those provided by java.util.Hashtable.

Overrides:
hashCode in class EntryID

clear

public void clear()
Release all variable object references. Since most of those references are JNI objects, gc will not reclaim them if we do not release them specificly. Client should call this in their finally block when done with this object.


finalize

protected void finalize()
                 throws java.lang.Throwable
Clears up all variable object references if it is called, even through there is no guarantee to be called. Basically, the finalize method calls clear(). Client should call this in their finally block when done with this object.

Throws:
java.lang.Throwable

7.0 Action Request System Java API