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.
  • Field Details

    • iii

      public final III iii
      The third value in this tuple.
  • Constructor Details

    • 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.