Class Tuple3<A,B,C>

java.lang.Object
org.jparsec.functors.Pair<A,B>
org.jparsec.functors.Tuple3<A,B,C>
Direct Known Subclasses:
Tuple4

@Deprecated public class Tuple3<A,B,C> extends Pair<A,B>
Deprecated.
Prefer to using a lambda expression to convert to your own type.
Immutable data holder for 3 values.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final C
    Deprecated.
     

    Fields inherited from class org.jparsec.functors.Pair

    a, b
  • Constructor Summary

    Constructors
    Constructor
    Description
    Tuple3(A a, B b, C c)
    Deprecated.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Deprecated.
     
    (package private) boolean
    equals(Tuple3<?,?,?> other)
    Deprecated.
     
    int
    Deprecated.
     
    Deprecated.
     

    Methods inherited from class org.jparsec.functors.Pair

    equals

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • c

      public final C c
      Deprecated.
  • Constructor Details

    • Tuple3

      public Tuple3(A a, B b, C c)
      Deprecated.
  • Method Details

    • equals

      boolean equals(Tuple3<?,?,?> other)
      Deprecated.
    • equals

      public boolean equals(Object obj)
      Deprecated.
      Overrides:
      equals in class Pair<A,B>
    • hashCode

      public int hashCode()
      Deprecated.
      Overrides:
      hashCode in class Pair<A,B>
    • toString

      public String toString()
      Deprecated.
      Overrides:
      toString in class Pair<A,B>