| Package | Description |
|---|---|
| java.lang.invoke | |
| java.util | |
| java.util.stream |
| Modifier and Type | Method and Description |
|---|---|
List<Class<?>> |
MethodType.parameterList() |
| Modifier and Type | Method and Description |
|---|---|
MethodType |
MethodType.appendParameterTypes(List<Class<?>> a) |
static MethodHandle |
MethodHandles.dropArguments(MethodHandle a,
int b,
List<Class<?>> c) |
MethodType |
MethodType.insertParameterTypes(int a,
List<Class<?>> b) |
Object |
MethodHandle.invokeWithArguments(List<?> a) |
static MethodType |
MethodType.methodType(Class<?> a,
List<Class<?>> b) |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractList<E> |
class |
AbstractSequentialList<E> |
class |
ArrayList<E> |
class |
LinkedList<E> |
class |
Stack<E> |
class |
Vector<E> |
| Modifier and Type | Field and Description |
|---|---|
static List |
Collections.EMPTY_LIST |
| Modifier and Type | Method and Description |
|---|---|
static <T> List<T> |
Arrays.asList(T... array) |
static <T> List<T> |
Collections.emptyList() |
static <T> List<T> |
Collections.nCopies(int length,
T object) |
static <E> List<E> |
Collections.singletonList(E object) |
List<E> |
Vector.subList(int start,
int end) |
List<E> |
List.subList(int start,
int end) |
List<E> |
AbstractList.subList(int start,
int end) |
static <T> List<T> |
Collections.synchronizedList(List<T> list) |
static <E> List<E> |
Collections.unmodifiableList(List<? extends E> list) |
| Modifier and Type | Method and Description |
|---|---|
static <T> int |
Collections.binarySearch(List<? extends Comparable<? super T>> list,
T object) |
static <T> int |
Collections.binarySearch(List<? extends T> list,
T object,
Comparator<? super T> comparator) |
static <T> void |
Collections.copy(List<? super T> destination,
List<? extends T> source) |
static <T> void |
Collections.copy(List<? super T> destination,
List<? extends T> source) |
static <T> void |
Collections.fill(List<? super T> list,
T object) |
static int |
Collections.indexOfSubList(List<?> list,
List<?> sublist) |
static int |
Collections.indexOfSubList(List<?> list,
List<?> sublist) |
static int |
Collections.lastIndexOfSubList(List<?> list,
List<?> sublist) |
static int |
Collections.lastIndexOfSubList(List<?> list,
List<?> sublist) |
static <T> boolean |
Collections.replaceAll(List<T> list,
T obj,
T obj2) |
static void |
Collections.reverse(List<?> list) |
static void |
Collections.rotate(List<?> lst,
int dist) |
static void |
Collections.shuffle(List<?> list) |
static void |
Collections.shuffle(List<?> list,
Random random) |
static <T extends Comparable<? super T>> |
Collections.sort(List<T> list) |
static <T> void |
Collections.sort(List<T> list,
Comparator<? super T> comparator) |
static void |
Collections.swap(List<?> list,
int index1,
int index2) |
static <T> List<T> |
Collections.synchronizedList(List<T> list) |
static <E> List<E> |
Collections.unmodifiableList(List<? extends E> list) |
| Modifier and Type | Method and Description |
|---|---|
static <T> Collector<T,?,List<T>> |
Collectors.toList() |
Copyright © 2026. All rights reserved.