E
- @StorableClass public abstract class PAbstractCollection<E> extends Object implements Collection<E>
Modifier | Constructor and Description |
---|---|
protected |
PAbstractCollection() |
Modifier and Type | Method and Description |
---|---|
boolean |
addAll(Collection<? extends E> collection) |
void |
clear() |
boolean |
contains(Object object) |
boolean |
containsAll(Collection<?> collection) |
boolean |
isEmpty() |
boolean |
remove(Object object) |
boolean |
removeAll(Collection<?> collection) |
boolean |
retainAll(Collection<?> collection) |
Object[] |
toArray() |
<T> T[] |
toArray(T[] toFillArray) |
String |
toString() |
public boolean isEmpty()
isEmpty
in interface Collection<E>
public boolean contains(Object object)
contains
in interface Collection<E>
public Object[] toArray()
toArray
in interface Collection<E>
public <T> T[] toArray(T[] toFillArray)
toArray
in interface Collection<E>
public boolean remove(Object object)
remove
in interface Collection<E>
public boolean containsAll(Collection<?> collection)
containsAll
in interface Collection<E>
public boolean addAll(Collection<? extends E> collection)
addAll
in interface Collection<E>
public boolean removeAll(Collection<?> collection)
removeAll
in interface Collection<E>
public boolean retainAll(Collection<?> collection)
retainAll
in interface Collection<E>
public void clear()
clear
in interface Collection<E>
Copyright © 2007-2012 Luc Peuvrier. All Rights Reserved.