Serializable
, Cloneable
, Iterable<E>
, Collection<E>
, List<E>
, RandomAccess
ValueList
public class FluentArrayList<E> extends ArrayList<E>
ArrayList
that supports fluent API.Constructor | Description |
---|---|
FluentArrayList() |
|
FluentArrayList(int initialCapacity) |
|
FluentArrayList(E... elements) |
|
FluentArrayList(Collection<? extends E> c) |
Modifier and Type | Method | Description |
---|---|---|
FluentArrayList<E> |
append(E e) |
Fluent method to add the specified element to this list.
|
FluentArrayList<E> |
appendAll(E... elements) |
Fluent method to add the elements to this list.
|
FluentArrayList<E> |
appendAll(Collection<? extends E> c) |
Fluent method to add the elements from the specified collection to this
list.
|
FluentArrayList<E> |
delete(Object o) |
Fluent method to remove the specified element from this list.
|
containsAll, toString
equals, hashCode
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, forEach, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeIf, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray, trimToSize
parallelStream, stream
public FluentArrayList(int initialCapacity)
public FluentArrayList()
public FluentArrayList(E... elements)
public FluentArrayList(Collection<? extends E> c)
public FluentArrayList<E> append(E e)
public FluentArrayList<E> delete(Object o)
public FluentArrayList<E> appendAll(Collection<? extends E> c)
public FluentArrayList<E> appendAll(E... elements)
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.