Package panda.std

Class Triple<A,B,C>

java.lang.Object
panda.std.Triple<A,B,C>

public class Triple<A,B,C> extends Object
  • Constructor Details

    • Triple

      public Triple(A first, B second, C third)
  • Method Details

    • of

      public static <A, C, B> Triple<A,B,C> of(A first, B second, C third)
    • add

      public <D> Quad<A,B,C,D> add(D fourth)
    • getFirst

      public A getFirst()
    • getSecond

      public B getSecond()
    • getThird

      public C getThird()
    • equals

      public boolean equals(Object to)
      Overrides:
      equals in class Object
    • hashCode

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

      public String toString()
      Overrides:
      toString in class Object