Package net.rotgruengelb.nixienaut.list
Class QuickArrayList<E>
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList<E>
net.rotgruengelb.nixienaut.list.QuickArrayList<E>
- All Implemented Interfaces:
Serializable,Cloneable,Iterable<E>,Collection<E>,List<E>,RandomAccess
This class is just a wrapper for ArrayList to make it easier to
add elements to the list in a chain. and then return the list itself.
add elements to the list in a chain. and then return the list itself.
- See Also:
-
Field Summary
Fields inherited from class java.util.AbstractList
modCount -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionThis class is just a wrapper for ArrayList to make it easier to
add elements to the list in a chain.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
-
QuickArrayList
public QuickArrayList()
-
-
Method Details
-
qAdd
This class is just a wrapper for ArrayList to make it easier to
add elements to the list in a chain. and then return the list itself.- Parameters:
e- The type of the elements in the list- Returns:
- The list itself
- See Also:
-