Class Tuple4<A,B,C,D>

java.lang.Object
org.ddogleg.struct.Tuple4<A,B,C,D>

public class Tuple4<A,B,C,D> extends Object
Simple data structure for passing a quad of data.
  • Field Details

    • d0

      @Nullable public A d0
    • d1

      @Nullable public B d1
    • d2

      @Nullable public C d2
    • d3

      @Nullable public D d3
  • Constructor Details

    • Tuple4

      public Tuple4(@Nullable A d0, @Nullable B d1, @Nullable C d2, @Nullable D d3)
    • Tuple4

      public Tuple4()
  • Method Details

    • getCheckD0

      public A getCheckD0()
      Returns d0 but performs a null check first
    • getCheckD1

      public B getCheckD1()
      Returns d1 but performs a null check first
    • getCheckD2

      public C getCheckD2()
      Returns d2 but performs a null check first
    • getCheckD3

      public D getCheckD3()
      Returns d3 but performs a null check first