edu.ksu.cis.projects.bogor.util
Class Triple<E1,E2,E3>

java.lang.Object
  extended by edu.ksu.cis.projects.bogor.util.Triple<E1,E2,E3>

public class Triple<E1,E2,E3>
extends Object

Type-parametric 3-tuple class.

Version:
CVS $Revision: 1.2 $ $Date: 2005/05/14 20:16:37 $
Author:
Matt Hoosier

Field Summary
 E1 first
           
 E2 second
           
 E3 third
           
 
Constructor Summary
Triple(E1 first, E2 second, E3 third)
           
 
Method Summary
 boolean equals(Object o)
           
 int hashCode()
           
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

first

public final E1 first

second

public final E2 second

third

public final E3 third
Constructor Detail

Triple

public Triple(E1 first,
              E2 second,
              E3 third)
Method Detail

hashCode

public int hashCode()
Overrides:
hashCode in class Object

equals

public boolean equals(Object o)
Overrides:
equals in class Object

toString

public String toString()
Overrides:
toString in class Object