public class WeakArrayList<T> extends AbstractList<T> implements Serializable
modCount| Constructor and Description |
|---|
WeakArrayList() |
| Modifier and Type | Method and Description |
|---|---|
void |
add(int index,
Object element) |
boolean |
add(Object e) |
boolean |
addAll(Collection c) |
boolean |
addAll(int index,
Collection c) |
void |
clear() |
boolean |
contains(Object o) |
boolean |
containsAll(Collection c) |
T |
get(int index) |
int |
indexOf(Object o) |
boolean |
isEmpty() |
Iterator |
iterator() |
int |
lastIndexOf(Object o) |
ListIterator |
listIterator() |
ListIterator |
listIterator(int index) |
T |
remove(int index) |
boolean |
remove(Object o) |
boolean |
removeAll(Collection c) |
boolean |
retainAll(Collection c) |
Object |
set(int index,
Object element) |
int |
size() |
List |
subList(int fromIndex,
int toIndex) |
Object[] |
toArray() |
Object[] |
toArray(Object[] a) |
equals, hashCode, removeRangetoStringclone, finalize, getClass, notify, notifyAll, wait, wait, waitreplaceAll, sort, spliteratorparallelStream, removeIf, streampublic boolean add(Object e)
add in interface Collection<T>add in interface List<T>add in class AbstractList<T>public void add(int index,
Object element)
public boolean addAll(Collection c)
addAll in interface Collection<T>addAll in interface List<T>addAll in class AbstractCollection<T>public boolean addAll(int index,
Collection c)
public void clear()
clear in interface Collection<T>clear in interface List<T>clear in class AbstractList<T>public boolean contains(Object o)
contains in interface Collection<T>contains in interface List<T>contains in class AbstractCollection<T>public boolean containsAll(Collection c)
containsAll in interface Collection<T>containsAll in interface List<T>containsAll in class AbstractCollection<T>public T get(int index)
public int indexOf(Object o)
public boolean isEmpty()
isEmpty in interface Collection<T>isEmpty in interface List<T>isEmpty in class AbstractCollection<T>public Iterator iterator()
public int lastIndexOf(Object o)
lastIndexOf in interface List<T>lastIndexOf in class AbstractList<T>public ListIterator listIterator()
listIterator in interface List<T>listIterator in class AbstractList<T>public ListIterator listIterator(int index)
listIterator in interface List<T>listIterator in class AbstractList<T>public boolean remove(Object o)
remove in interface Collection<T>remove in interface List<T>remove in class AbstractCollection<T>public T remove(int index)
public boolean removeAll(Collection c)
removeAll in interface Collection<T>removeAll in interface List<T>removeAll in class AbstractCollection<T>public boolean retainAll(Collection c)
retainAll in interface Collection<T>retainAll in interface List<T>retainAll in class AbstractCollection<T>public int size()
size in interface Collection<T>size in interface List<T>size in class AbstractCollection<T>public List subList(int fromIndex, int toIndex)
public Object[] toArray()
toArray in interface Collection<T>toArray in interface List<T>toArray in class AbstractCollection<T>Copyright © 2017 SAP SE. All Rights Reserved.