所有方法 静态方法 具体方法
| 限定符和类型 |
方法和说明 |
static <T> void |
add(List<T> objects,
Integer index,
T e) |
static <T> Boolean |
add(List<T> objects,
T e) |
static <T> Boolean |
addAll(List<T> objects,
Integer index,
List<T> e) |
static <T> Boolean |
addAll(List<T> objects,
List<T> e) |
static <T> void |
clear(List<T> objects) |
static <T> Boolean |
contains(List<T> objects,
T object) |
static <T> Boolean |
containsAll(List<T> objects,
Collection<T> collections) |
static <T> T |
get(List<T> objects,
Integer index) |
static <T> Integer |
hashCode(List<T> objects) |
static <T> Integer |
indexOf(List<T> objects,
T object) |
static <T> Boolean |
isEmpty(List<T> objects) |
static <T> Iterator<T> |
iterator(List<T> objects) |
static <T> Integer |
lastIndexOf(List<T> objects,
T object) |
static <T> ListIterator<T> |
listIterator(List<T> objects) |
static <T> ListIterator<T> |
listIterator(List<T> objects,
Integer index) |
static <T> T |
remove(List<T> objects,
int index) |
static <T> Boolean |
remove(List<T> objects,
T object) |
static <T> Boolean |
removeAll(List<T> objects,
Collection<T> collections) |
static <T> Boolean |
retainAll(List<T> objects,
Collection<T> collections) |
static <T> T |
set(List<T> objects,
Integer index,
T object) |
static <T> Integer |
size(List<T> objects) |
static <T> List<T> |
subList(List<T> objects,
Integer fromIndex,
Integer toIndex) |
static <T> Object[] |
toArray(List<Object> objects,
T[] a) |
static <T> Object[] |
toArray(List<T> objects) |
static <T> String |
toString(List<T> objects) |