类 Tuple3<A,B,C>

java.lang.Object
cn.wjybxx.base.tuple.Tuple3<A,B,C>

public final class Tuple3<A,B,C> extends Object
三元组
作者:
wjybxx date 2023/3/31
  • 构造器详细资料

    • Tuple3

      public Tuple3(A first, B second, C third)
  • 方法详细资料

    • of

      public static <A, B, C> Tuple3<A,B,C> of(A first, B second, C third)
    • asTuple2

      public Tuple2<A,B> asTuple2()
    • getFirst

      public A getFirst()
    • getSecond

      public B getSecond()
    • getThird

      public C getThird()
    • equals

      public boolean equals(Object o)
      覆盖:
      equals 在类中 Object
    • hashCode

      public int hashCode()
      覆盖:
      hashCode 在类中 Object
    • toString

      public String toString()
      覆盖:
      toString 在类中 Object