Package groovy.lang
Class Tuple<E>
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractList<E>
-
- groovy.lang.Tuple<E>
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Iterable<E>
,java.util.Collection<E>
,java.util.List<E>
public class Tuple<E> extends java.util.AbstractList<E> implements java.io.Serializable
Represents a list of Objects.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
E
get(int index)
int
hashCode()
int
size()
java.util.List<E>
subList(int fromIndex, int toIndex)
Tuple<E>
subTuple(int fromIndex, int toIndex)
-
Methods inherited from class java.util.AbstractList
add, add, addAll, clear, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, removeRange, set
-
Methods inherited from class java.util.AbstractCollection
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
-
-