Package groovy.lang

Class Tuple3<T1,T2,T3>

All Implemented Interfaces:
Serializable, Cloneable, Comparable, Iterable, Collection, List, RandomAccess

public final class Tuple3<T1,T2,T3> extends Tuple
Represents a list of 3 typed Objects.
Since:
2.5.0
See Also:
  • Constructor Details

    • Tuple3

      public Tuple3(T1 v1, T2 v2, T3 v3)
      Creates a tuple containing the supplied elements.
      Parameters:
      v1 - the first element
      v2 - the second element
      v3 - the third element
    • Tuple3

      public Tuple3(Tuple3<T1,T2,T3> tuple)
      Creates a tuple from the supplied tuple.
      Parameters:
      tuple - the source tuple
  • Method Details

    • getFirst

      @Deprecated public T1 getFirst()
      Deprecated.
      Returns the first element.
      Returns:
      the first element
    • getSecond

      @Deprecated public T2 getSecond()
      Deprecated.
      Returns the second element.
      Returns:
      the second element
    • getThird

      @Deprecated public T3 getThird()
      Deprecated.
      Returns the third element.
      Returns:
      the third element
    • getV1

      public T1 getV1()
      Returns the first element.
      Returns:
      the first element
    • getV2

      public T2 getV2()
      Returns the second element.
      Returns:
      the second element
    • getV3

      public T3 getV3()
      Returns the third element.
      Returns:
      the third element
    • clone

      public Tuple3<T1,T2,T3> clone()
      Overrides:
      clone in class Tuple