Class Triplet<F,S,T>

java.lang.Object
com.github.westsi.browser.util.Triplet<F,S,T>
Type Parameters:
F - The type of the first piece of data in the triplet
S - The type of the second piece of data
T - The type of the third piece of data

public class Triplet<F,S,T> extends Object
Utility class to group together three pieces of data.
  • Constructor Details

    • Triplet

      public Triplet(F first, S second, T third)
  • Method Details

    • getFirst

      public F getFirst()
    • setFirst

      public void setFirst(F first)
    • getSecond

      public S getSecond()
    • setSecond

      public void setSecond(S second)
    • getThird

      public T getThird()
    • setThird

      public void setThird(T third)