Class Triple<A,B,C>

java.lang.Object
com.pnfsoftware.jeb.util.base.Triple<A,B,C>
Type Parameters:
A - the first element
B - the second element
C - the third element

@Ser public class Triple<A,B,C> extends Object
Handy class holding three typed elements. Null values are allowed.
See Also:
  • Constructor Details

    • Triple

      public Triple(A a, B b, C c)
  • Method Details

    • getFirst

      public A getFirst()
    • setFirst

      public void setFirst(A a)
    • getSecond

      public B getSecond()
    • setSecond

      public void setSecond(B b)
    • getThird

      public C getThird()
    • setThird

      public void setThird(C c)
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object