Package utils

Class Pair<F,S>

java.lang.Object
utils.Pair<F,S>
Type Parameters:
F - the type of the first element
S - the type of the second element

public class Pair<F,S> extends Object
Generic parameterized pair.
Author:
woodser
  • Constructor Details

    • Pair

      public Pair(F first, S second)
  • Method Details

    • getFirst

      public F getFirst()
    • setFirst

      public void setFirst(F first)
    • getSecond

      public S getSecond()
    • setSecond

      public void setSecond(S second)