boolean
add(E e)
void
add(int index, E element)
addAll(Collection extends E> c)
addAll(int index, Collection extends E> c)
clear()
Object
clone()
contains(Object o)
forEach(Consumer super E> action)
Iterable
get(int index)
int
indexOf(Object o)
返回此列表中指定元素的第一次出现的索引,如果此列表不包含元素,则返回-1。
isEmpty()
Iterator
iterator()
lastIndexOf(Object o)
remove(int index)
removeAll(Collection> c)
E
set(int index, E element)
用指定的元素替换此列表中指定位置的元素。
size()
sort(Comparator super E> c)
Comparator
List
subList(int fromIndex, int toIndex)
fromIndex
toIndex
Object[]
toArray()
T[]
toArray(T[] a)