Class Triple<A,​B,​C>

Object
Triple<A,​B,​C>

public class Triple<A,​B,​C>
extends Object
Instances of this class holds three values of arbitrary type.
  • Constructor Details

  • Method Details

    • of

      public static <E,​ F,​ G> Triple<E,​F,​G> of​(E e, F f, G g)
    • lazy

      public static <E,​ F,​ G> DRes<Triple<E,​F,​G>> lazy​(E e, F f, G g)
    • getFirst

      public A getFirst()
    • getSecond

      public B getSecond()
    • getThird

      public C getThird()