Class Tuple3<A,B,C>

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

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

    • d0

      @Nullable public A d0
    • d1

      @Nullable public B d1
    • d2

      @Nullable public C d2
  • Constructor Details

    • Tuple3

      public Tuple3(@Nullable A d0, @Nullable B d1, @Nullable C d2)
    • Tuple3

      public Tuple3()
  • 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