public abstract static class Util.AbstractFlatList<T> extends Object implements List<T>, RandomAccess
| Constructor and Description | 
|---|
AbstractFlatList()  | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
add(int index,
   Object element)  | 
boolean | 
add(Object t)  | 
boolean | 
addAll(Collection<? extends T> c)  | 
boolean | 
addAll(int index,
      Collection<? extends T> c)  | 
protected List<T> | 
asArrayList()  | 
void | 
clear()  | 
boolean | 
contains(Object o)  | 
boolean | 
containsAll(Collection<?> c)  | 
boolean | 
isEmpty()  | 
Iterator<T> | 
iterator()  | 
ListIterator<T> | 
listIterator()  | 
ListIterator<T> | 
listIterator(int index)  | 
T | 
remove(int index)  | 
boolean | 
remove(Object o)  | 
boolean | 
removeAll(Collection<?> c)  | 
boolean | 
retainAll(Collection<?> c)  | 
T | 
set(int index,
   Object element)  | 
List<T> | 
subList(int fromIndex,
       int toIndex)  | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitequals, get, hashCode, indexOf, lastIndexOf, replaceAll, size, sort, spliterator, toArray, toArrayparallelStream, removeIf, streampublic ListIterator<T> listIterator()
listIterator in interface List<T>public boolean isEmpty()
public boolean add(Object t)
public boolean addAll(Collection<? extends T> c)
public boolean addAll(int index,
                      Collection<? extends T> c)
public boolean removeAll(Collection<?> c)
public boolean retainAll(Collection<?> c)
public void clear()
public ListIterator<T> listIterator(int index)
listIterator in interface List<T>public boolean contains(Object o)
public boolean containsAll(Collection<?> c)
containsAll in interface Collection<T>containsAll in interface List<T>