org.fest.swing.util
Class Triple<I,II,III>
java.lang.Object
org.fest.swing.util.Pair<I,II>
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 |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
iii
public final III iii
- The third value in this tuple.
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-2010 FEST (Fixtures for Easy Software Testing). All Rights Reserved.