public class ImprovedList<T> extends QuickCollection<T> implements List<T>
| Modifier and Type | Class and Description |
|---|---|
static class |
ImprovedList.ImprovedListStream<T> |
delegate| Constructor and Description |
|---|
ImprovedList() |
ImprovedList(List<T> interiorDelegate) |
| Modifier and Type | Method and Description |
|---|---|
void |
add(int index,
T element) |
boolean |
addAll(int index,
Collection<? extends T> c) |
T |
get(int index) |
static <T> ImprovedList<T> |
improve(List<T> inferiorList) |
int |
indexOf(Object o) |
int |
lastIndexOf(Object o) |
ListIterator<T> |
listIterator() |
ListIterator<T> |
listIterator(int index) |
static <T> ImprovedList<T> |
of(List<T> inferiorList) |
static <T> ImprovedList<T> |
of(T... stuff) |
T |
remove(int index) |
T |
set(int index,
T element) |
ImprovedList<T> |
subList(int fromIndex) |
ImprovedList<T> |
subList(int fromIndex,
int toIndex) |
<O> ImprovedList<O> |
transform(java.util.function.Function<? super T,? extends O> f) |
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray, toStringclone, finalize, getClass, notify, notifyAll, wait, wait, waitadd, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, replaceAll, retainAll, size, sort, spliterator, toArray, toArrayparallelStream, removeIf, streampublic static <T> ImprovedList<T> improve(List<T> inferiorList)
public static <T> ImprovedList<T> of(List<T> inferiorList)
@SafeVarargs public static <T> ImprovedList<T> of(T... stuff)
public <O> ImprovedList<O> transform(java.util.function.Function<? super T,? extends O> f)
public boolean addAll(int index,
Collection<? extends T> c)
public int lastIndexOf(Object o)
lastIndexOf in interface List<T>public ListIterator<T> listIterator()
listIterator in interface List<T>public ListIterator<T> listIterator(int index)
listIterator in interface List<T>public ImprovedList<T> subList(int fromIndex, int toIndex)
public ImprovedList<T> subList(int fromIndex)
Copyright © 2015. All rights reserved.