org.apache.commons.collections.set
Class AbstractSetDecorator
- Collection, Set
public abstract class AbstractSetDecorator
implements Set
Decorates another
Set to provide additional behaviour.
Methods are forwarded directly to the decorated set.
Version:
- Stephen Colebourne
- Commons Collections 3.0
protected Set | getSet()- Gets the set being decorated.
|
add, addAll, clear, contains, containsAll, equals, getCollection, hashCode, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray, toString |
AbstractSetDecorator
protected AbstractSetDecorator()
Constructor only used in deserialization, do not use otherwise.
- Commons Collections 3.1
AbstractSetDecorator
protected AbstractSetDecorator(Set set)
Constructor that wraps (not copies).
set - the set to decorate, must not be null
getSet
protected Set getSet()
Gets the set being decorated.
- the decorated set
Copyright © 2001-2005 Apache Software Foundation. All Rights Reserved.