net.cscott.jutil
Class CollectionWrapper<E>
java.lang.Object
net.cscott.jutil.CollectionWrapper<E>
- All Implemented Interfaces:
- Iterable<E>, Collection<E>
- Direct Known Subclasses:
- ListWrapper, SetWrapper
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
- Version:
- $Id: CollectionWrapper.java,v 1.4 2006-10-30 19:58:05 cananian Exp $
- Author:
- Felix S. Klock II
CollectionWrapper
protected CollectionWrapper()
- Creates a
CollectionWrapper.
wrapped
protected abstract Collection<E> wrapped()
- Implementations should return the wrapped
Collection here.
add
public boolean add(E o)
- Specified by:
add in interface Collection<E>
addAll
public boolean addAll(Collection<? extends E> c)
- Specified by:
addAll in interface Collection<E>
clear
public void clear()
- Specified by:
clear in interface Collection<E>
contains
public boolean contains(Object o)
- Specified by:
contains in interface Collection<E>
containsAll
public boolean containsAll(Collection<?> c)
- Specified by:
containsAll in interface Collection<E>
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty in interface Collection<E>
iterator
public Iterator<E> iterator()
- Specified by:
iterator in interface Iterable<E>- Specified by:
iterator in interface Collection<E>
remove
public boolean remove(Object o)
- Specified by:
remove in interface Collection<E>
removeAll
public boolean removeAll(Collection<?> c)
- Specified by:
removeAll in interface Collection<E>
retainAll
public boolean retainAll(Collection<?> c)
- Specified by:
retainAll in interface Collection<E>
size
public int size()
- Specified by:
size in interface Collection<E>
toArray
public Object[] toArray()
- Specified by:
toArray in interface Collection<E>
toArray
public <T> T[] toArray(T[] a)
- Specified by:
toArray in interface Collection<E>
toString
public String toString()
- Overrides:
toString in class Object
equals
public boolean equals(Object o)
- Specified by:
equals in interface Collection<E>- Overrides:
equals in class Object
hashCode
public int hashCode()
- Specified by:
hashCode in interface Collection<E>- Overrides:
hashCode in class Object
Copyright (c) 2006 C. Scott Ananian