Interface Tuple3<A,B,C>

All Superinterfaces:
Serializable

public interface Tuple3<A,B,C> extends Serializable
  • Method Summary

    Modifier and Type
    Method
    Description
    _1()
     
    _2()
     
    _3()
     
    default <D> Tuple4<A,B,C,D>
    append(D d)
     
    default <RES> RES
    map(Fn3<RES,A,B,C> f)
     
    static <A, B, C> Tuple3<A,B,C>
    of(A a, B b, C c)
     
  • Method Details

    • _1

      A _1()
    • _2

      B _2()
    • _3

      C _3()
    • map

      default <RES> RES map(Fn3<RES,A,B,C> f)
    • append

      default <D> Tuple4<A,B,C,D> append(D d)
    • of

      static <A, B, C> Tuple3<A,B,C> of(A a, B b, C c)