org.codehaus.jparsec.functors
Class Tuple3<A,B,C>

java.lang.Object
  extended by org.codehaus.jparsec.functors.Pair<A,B>
      extended by org.codehaus.jparsec.functors.Tuple3<A,B,C>
Direct Known Subclasses:
Tuple4

public class Tuple3<A,B,C>
extends Pair<A,B>

Immutable data holder for 3 values.

Author:
Ben Yu

Field Summary
 C c
           
 
Fields inherited from class org.codehaus.jparsec.functors.Pair
a, b
 
Constructor Summary
Tuple3(A a, B b, C c)
           
 
Method Summary
 boolean equals(Object obj)
           
 int hashCode()
           
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

c

public final C c
Constructor Detail

Tuple3

public Tuple3(A a,
              B b,
              C c)
Method Detail

equals

public boolean equals(Object obj)
Overrides:
equals in class Pair<A,B>

hashCode

public int hashCode()
Overrides:
hashCode in class Pair<A,B>

toString

public String toString()
Overrides:
toString in class Pair<A,B>


Copyright © 2014. All rights reserved.