public class ListProxy<U> extends CollectionProxy<U,List<U>> implements List<U>
delegate
Constructor and Description |
---|
ListProxy() |
ListProxy(Initializor<List<U>> initializor) |
Modifier and Type | Method and Description |
---|---|
void |
add(int index,
U element) |
boolean |
addAll(int index,
Collection<? extends U> c) |
U |
get(int index) |
int |
indexOf(Object o) |
int |
lastIndexOf(Object o) |
ListIterator<U> |
listIterator() |
ListIterator<U> |
listIterator(int index) |
U |
remove(int index) |
U |
set(int index,
U element) |
List<U> |
subList(int fromIndex,
int toIndex) |
add, addAll, checkInit, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray, toString
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
add, addAll, clear, contains, containsAll, equals, hashCode, isEmpty, iterator, remove, removeAll, replaceAll, retainAll, size, sort, spliterator, toArray, toArray
parallelStream, removeIf, stream
public ListProxy()
public ListProxy(Initializor<List<U>> initializor)
public boolean addAll(int index, Collection<? extends U> c)
public int lastIndexOf(Object o)
lastIndexOf
in interface List<U>
public ListIterator<U> listIterator()
listIterator
in interface List<U>
public ListIterator<U> listIterator(int index)
listIterator
in interface List<U>
Copyright © 2001-2017 Red Hat, Inc. All Rights Reserved.