E
- @StorableClass public abstract class PAbstractList<E> extends PAbstractCollection<E> implements List<E>
Modifier and Type | Field and Description |
---|---|
protected IInstanceFactory |
instanceFactory |
Modifier | Constructor and Description |
---|---|
protected |
PAbstractList(IInstanceFactory instanceFactory) |
Modifier and Type | Method and Description |
---|---|
boolean |
add(E element) |
void |
add(int index,
E element) |
boolean |
addAll(int startIndex,
Collection<? extends E> collection) |
E |
get(int index) |
int |
indexOf(Object object) |
Iterator<E> |
iterator() |
int |
lastIndexOf(Object object) |
ListIterator<E> |
listIterator() |
ListIterator<E> |
listIterator(int index) |
E |
remove(int index) |
E |
set(int index,
E element) |
List<E> |
subList(int fromIndex,
int toIndex) |
addAll, clear, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
protected final transient IInstanceFactory instanceFactory
protected PAbstractList(IInstanceFactory instanceFactory)
public int lastIndexOf(Object object)
lastIndexOf
in interface List<E>
public boolean add(E element)
public boolean addAll(int startIndex, Collection<? extends E> collection)
public ListIterator<E> listIterator()
listIterator
in interface List<E>
public ListIterator<E> listIterator(int index)
listIterator
in interface List<E>
Copyright © 2007-2012 Luc Peuvrier. All Rights Reserved.