Class 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
      C 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

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object obj)
      Deprecated.
       
      (package private) boolean equals​(Tuple3<?,​?,​?> other)
      Deprecated.
       
      int hashCode()
      Deprecated.
       
      java.lang.String toString()
      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 Detail

      • c

        public final C c
        Deprecated.
    • Constructor Detail

      • Tuple3

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

      • equals

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

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

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

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