org.fest.swing.util
Class Triple<I,II,III>

java.lang.Object
  extended by org.fest.swing.util.Pair<I,II>
      extended by org.fest.swing.util.Triple<I,II,III>
Type Parameters:
I - the generic type of the 1st. value in this tuple.
II - the generic type of the 2nd. value in this tuple.
III - the generic type of the 3rd. value in this tuple.

public class Triple<I,II,III>
extends Pair<I,II>

Understands a tuple of size 3.

Author:
Alex Ruiz

Field Summary
 III iii
          The third value in this tuple.
 
Fields inherited from class org.fest.swing.util.Pair
i, ii
 
Constructor Summary
Triple(I i, II ii, III iii)
          Creates a new Triple.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

iii

public final III iii
The third value in this tuple.

Constructor Detail

Triple

public Triple(I i,
              II ii,
              III iii)
Creates a new Triple.

Parameters:
i - the 1st. value in this tuple.
ii - the 2nd. value in this tuple.
iii - the 3rd. value in this tuple.


Copyright © 2007-2011 FEST (Fixtures for Easy Software Testing). All Rights Reserved.