public class FluentArrayList<E>
extends java.util.ArrayList<E>
ArrayList
that supports fluent API.Modifier and Type | Field and Description |
---|---|
private static long |
serialVersionUID |
Constructor and Description |
---|
FluentArrayList() |
FluentArrayList(java.util.Collection<? extends E> c) |
FluentArrayList(E... elements) |
FluentArrayList(int initialCapacity) |
Modifier and Type | Method and Description |
---|---|
FluentArrayList<E> |
append(E e)
Fluent method to add the specified element to this list.
|
FluentArrayList<E> |
appendAll(java.util.Collection<? extends E> c)
Fluent method to add the elements from the specified collection to this
list.
|
FluentArrayList<E> |
appendAll(E... elements)
Fluent method to add the elements to this list.
|
FluentArrayList<E> |
delete(java.lang.Object o)
Fluent method to remove the specified element from this list.
|
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, forEach, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, removeRange, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSize
private static final long serialVersionUID
public FluentArrayList(int initialCapacity)
public FluentArrayList()
public FluentArrayList(E... elements)
public FluentArrayList(java.util.Collection<? extends E> c)
public FluentArrayList<E> append(E e)
public FluentArrayList<E> delete(java.lang.Object o)
public FluentArrayList<E> appendAll(java.util.Collection<? extends E> c)
public FluentArrayList<E> appendAll(E... elements)