Save This Page
Home » quartz-1.6.0 » org » quartz » utils » [javadoc | source]
org.quartz.utils
public class: Pair [javadoc | source]
java.lang.Object
   org.quartz.utils.Pair

Direct Known Subclasses:
    TriggerStatus, Key

Utility class for storing two pieces of information together.

Method from org.quartz.utils.Pair Summary:
equals,   getFirst,   getSecond,   hashCode,   setFirst,   setSecond
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.quartz.utils.Pair Detail:
 public boolean equals(Object that) 

    Test equality of this object with that.

 public final Object getFirst() 

    Get the first object in the pair.

 public final Object getSecond() 

    Get the second object in the pair.

 public int hashCode() 
 public final  void setFirst(Object first) 

    Set the value of the first object in the pair.

 public final  void setSecond(Object second) 

    Set the second object in the pair.