-
-
Method Summary
Modifier and Type Method Description Optional<T>findAnyOpt()TfindAnyOrNull()StringtoString()intsize()booleanisEmpty()booleancontains(Object o)Iterator<T>iterator()voidforEach(Consumer<out Object> action)Array<Object>toArray()<T1> Array<T1>toArray(@NotNull() Array<T1> a)booleanadd(T t)booleanremove(Object o)booleancontainsAll(@NotNull() Collection<out Object> c)booleanaddAll(@NotNull() Collection<out T> c)booleanaddAll(int index, @NotNull() Collection<out T> c)booleanremoveAll(@NotNull() Collection<out Object> c)booleanremoveIf(Predicate<out Object> filter)booleanretainAll(@NotNull() Collection<out Object> c)voidreplaceAll(UnaryOperator<T> operator)voidsort(Comparator<out Object> c)voidclear()Tget(int index)Tset(int index, T element)voidadd(int index, T element)Tremove(int index)intindexOf(Object o)intlastIndexOf(Object o)ListIterator<T>listIterator()ListIterator<T>listIterator(int index)List<T>subList(int fromIndex, int toIndex)Spliterator<T>spliterator()Stream<T>stream()Stream<T>parallelStream()-
-
Method Detail
-
findAnyOpt
Optional<T> findAnyOpt()
-
findAnyOrNull
@Nullable() T findAnyOrNull()
-
size
int size()
-
isEmpty
boolean isEmpty()
-
containsAll
boolean containsAll(@NotNull() Collection<out Object> c)
-
addAll
boolean addAll(@NotNull() Collection<out T> c)
-
addAll
boolean addAll(int index, @NotNull() Collection<out T> c)
-
removeAll
boolean removeAll(@NotNull() Collection<out Object> c)
-
retainAll
boolean retainAll(@NotNull() Collection<out Object> c)
-
replaceAll
void replaceAll(UnaryOperator<T> operator)
-
sort
void sort(Comparator<out Object> c)
-
clear
void clear()
-
lastIndexOf
int lastIndexOf(Object o)
-
listIterator
@NotNull() ListIterator<T> listIterator()
-
listIterator
@NotNull() ListIterator<T> listIterator(int index)
-
spliterator
Spliterator<T> spliterator()
-
parallelStream
Stream<T> parallelStream()
-
-
-
-