Interface Tuple4<A,B,C,D>

All Superinterfaces:
Serializable
All Known Implementing Classes:
Tuple4.Tuple4Impl

public sealed interface Tuple4<A,B,C,D> extends Serializable permits Tuple4.Tuple4Impl<A,B,C,D>
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static final class 
     
  • Method Summary

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

    • _1

      A _1()
    • _2

      B _2()
    • _3

      C _3()
    • _4

      D _4()
    • map

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

      default <E> Tuple5<A,B,C,D,E> append(E e)
    • of

      static <A, B, C, D> Tuple4<A,B,C,D> of(A a, B b, C c, D d)