public abstract class CollectionWrapper<E> extends Object implements Collection<E>
CollectionWrapper is a class that acts as a wrapper
around another Collection, using it as its backing store. This
class isn't meant for direct usage, but rather provides for an easy
way for developers to quickly add extra independent behavior to
their own specific Collections without having to reimplement all of
AbstractCollection's interface| Modifier | Constructor and Description |
|---|---|
protected |
CollectionWrapper()
Creates a
CollectionWrapper. |
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(E o) |
boolean |
addAll(Collection<? extends E> c) |
void |
clear() |
boolean |
contains(Object o) |
boolean |
containsAll(Collection<?> c) |
boolean |
equals(Object o) |
int |
hashCode() |
boolean |
isEmpty() |
Iterator<E> |
iterator() |
boolean |
remove(Object o) |
boolean |
removeAll(Collection<?> c) |
boolean |
retainAll(Collection<?> c) |
int |
size() |
Object[] |
toArray() |
<T> T[] |
toArray(T[] a) |
String |
toString() |
protected abstract Collection<E> |
wrapped()
Implementations should return the wrapped
Collection here. |
clone, finalize, getClass, notify, notifyAll, wait, wait, waitparallelStream, removeIf, spliterator, streamprotected CollectionWrapper()
CollectionWrapper.protected abstract Collection<E> wrapped()
Collection here.public boolean add(E o)
add in interface Collection<E>public boolean addAll(Collection<? extends E> c)
addAll in interface Collection<E>public void clear()
clear in interface Collection<E>public boolean contains(Object o)
contains in interface Collection<E>public boolean containsAll(Collection<?> c)
containsAll in interface Collection<E>public boolean isEmpty()
isEmpty in interface Collection<E>public boolean remove(Object o)
remove in interface Collection<E>public boolean removeAll(Collection<?> c)
removeAll in interface Collection<E>public boolean retainAll(Collection<?> c)
retainAll in interface Collection<E>public int size()
size in interface Collection<E>public Object[] toArray()
toArray in interface Collection<E>public <T> T[] toArray(T[] a)
toArray in interface Collection<E>public boolean equals(Object o)
equals in interface Collection<E>equals in class Objectpublic int hashCode()
hashCode in interface Collection<E>hashCode in class ObjectCopyright (c) 2006 C. Scott Ananian