Package groovy.lang
Class Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<E>
groovy.lang.Tuple
groovy.lang.Tuple11<T1,T2,T3,T4,T5,T6,T7,T8,T9,T10,T11>
- All Implemented Interfaces:
Serializable,Cloneable,Comparable,Iterable,Collection,List,RandomAccess
Represents a list of 10 typed Objects.
- Since:
- 3.0.0
- See Also:
-
Field Summary
Fields inherited from class java.util.AbstractList
modCount -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionclone()getV1()Returns the first element.getV10()Returns the tenth element.getV11()Returns the eleventh element.getV2()Returns the second element.getV3()Returns the third element.getV4()Returns the fourth element.getV5()Returns the fifth element.getV6()Returns the sixth element.getV7()Returns the seventh element.getV8()Returns the eighth element.getV9()Returns the ninth element.Methods inherited from class groovy.lang.Tuple
compareTo, equals, get, hashCode, size, subList, subTuple, toArray, toArray, tuple, tuple, tuple, tuple, tuple, tuple, tuple, tuple, tuple, tuple, tuple, tuple, tuple, tuple, tuple, tuple, tupleMethods inherited from class java.util.AbstractList
add, add, addAll, clear, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, removeRange, setMethods inherited from class java.util.AbstractCollection
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toStringMethods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArrayMethods inherited from interface java.util.List
addAll, contains, containsAll, isEmpty, remove, removeAll, replaceAll, retainAll, sort, spliterator
-
Constructor Details
-
Tuple11
Creates a tuple containing the supplied elements.- Parameters:
v1- the first elementv2- the second elementv3- the third elementv4- the fourth elementv5- the fifth elementv6- the sixth elementv7- the seventh elementv8- the eighth elementv9- the ninth elementv10- the tenth elementv11- the eleventh element
-
Tuple11
Creates a tuple from the supplied tuple.- Parameters:
tuple- the source tuple
-
-
Method Details
-
getV1
Returns the first element.- Returns:
- the first element
-
getV2
Returns the second element.- Returns:
- the second element
-
getV3
Returns the third element.- Returns:
- the third element
-
getV4
Returns the fourth element.- Returns:
- the fourth element
-
getV5
Returns the fifth element.- Returns:
- the fifth element
-
getV6
Returns the sixth element.- Returns:
- the sixth element
-
getV7
Returns the seventh element.- Returns:
- the seventh element
-
getV8
Returns the eighth element.- Returns:
- the eighth element
-
getV9
Returns the ninth element.- Returns:
- the ninth element
-
getV10
Returns the tenth element.- Returns:
- the tenth element
-
getV11
Returns the eleventh element.- Returns:
- the eleventh element
-
clone
-