Package io.fi0x.javadatastructures
Class TupleList<O1,O2>
- Type Parameters:
O1- The type ofObjectthat should be used for the firstTupletype.O2- The type ofObjectthat should be used for the secondTupletype.
- All Implemented Interfaces:
Serializable,Cloneable,Iterable<Tuple<O1,,O2>> Collection<Tuple<O1,,O2>> List<Tuple<O1,,O2>> RandomAccess
This class is an extension of a normal
ArrayList.
It is used to simplify the use of Tuples in an ArrayList.- See Also:
-
Field Summary
Fields inherited from class java.util.AbstractList
modCount -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class java.util.ArrayList
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, equals, forEach, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSizeMethods inherited from class java.util.AbstractCollection
containsAll, toStringMethods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
parallelStream, stream, toArrayMethods inherited from interface java.util.List
containsAll
-
Constructor Details
-
TupleList
public TupleList()The default constructor of this class.
-