public class ObList<E extends IElement> extends ArrayList<E>
modCount
Constructor and Description |
---|
ObList() |
ObList(Collection<E> c) |
ObList(E[] elements) |
ObList(int initialCapacity) |
Modifier and Type | Method and Description |
---|---|
boolean |
add(E o) |
void |
add(int index,
E element) |
boolean |
addAll(Collection<? extends E> c) |
boolean |
addAll(int index,
Collection<? extends E> c) |
void |
clear() |
List<Object> |
map(IMetamodelVisitor v) |
E |
remove(int index) |
boolean |
remove(Object o) |
boolean |
removeAll(Collection<?> c) |
protected void |
removeRange(int toIndex,
int fromIndex) |
boolean |
retainAll(Collection<?> c) |
<T extends E> |
select(Class<T> c) |
ObList<E> |
select(IObListFilter filter) |
E |
set(int index,
E element) |
clone, contains, ensureCapacity, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, size, subList, toArray, toArray, trimToSize
equals, hashCode
containsAll, toString
finalize, getClass, notify, notifyAll, wait, wait, wait
containsAll, equals, hashCode
public ObList()
public ObList(int initialCapacity)
public ObList(Collection<E> c)
public ObList(E[] elements)
public boolean add(E o)
public void add(int index, E element)
public boolean addAll(Collection<? extends E> c)
public boolean addAll(int index, Collection<? extends E> c)
public void clear()
public List<Object> map(IMetamodelVisitor v)
public E remove(int index)
public boolean remove(Object o)
public boolean removeAll(Collection<?> c)
public boolean retainAll(Collection<?> c)
public ObList<E> select(IObListFilter filter)
protected void removeRange(int toIndex, int fromIndex)
removeRange
in class ArrayList<E extends IElement>