Class AbstractCollectionDecorator
java.lang.Object
org.apache.commons.collections.collection.AbstractCollectionDecorator
- All Implemented Interfaces:
Iterable,Collection
- Direct Known Subclasses:
AbstractBagDecorator,AbstractBufferDecorator,AbstractListDecorator,AbstractSerializableCollectionDecorator,AbstractSetDecorator
@Deprecated(since="2021-04-30")
public abstract class AbstractCollectionDecorator
extends Object
implements Collection
Deprecated.
Apache Commons Collections version 3.x is being deprecated from AEMaaCS. The upgraded version 4.4 of Commons Collections is already included as replacement. Customers are advised to upgrade to this version of the library. Please note: the package name was changed to org.apache.commons.collections4. Further note that there are AEM APIs currently exposing the old collections classes; these will be updated in upcoming releases.
Decorates another
Collection to provide additional behaviour.
Each method call made on this Collection is forwarded to the
decorated Collection. This class is used as a framework on which
to build to extensions such as synchronized and unmodifiable behaviour. The
main advantage of decoration is that one decorator can wrap any implementation
of Collection, whereas sub-classing requires a new class to be
written for each implementation.
This implementation does not perform any special processing with
iterator(). Instead it simply returns the value from the
wrapped collection. This may be undesirable, for example if you are trying
to write an unmodifiable implementation it might provide a loophole.
- Since:
- Commons Collections 3.0
-
Method Summary
Modifier and TypeMethodDescriptionbooleanDeprecated.booleanaddAll(Collection coll) Deprecated.voidclear()Deprecated.booleanDeprecated.booleancontainsAll(Collection coll) Deprecated.booleanDeprecated.inthashCode()Deprecated.booleanisEmpty()Deprecated.iterator()Deprecated.booleanDeprecated.booleanremoveAll(Collection coll) Deprecated.booleanretainAll(Collection coll) Deprecated.intsize()Deprecated.Object[]toArray()Deprecated.Object[]Deprecated.toString()Deprecated.Methods inherited from interface java.util.Collection
parallelStream, removeIf, spliterator, stream, toArray
-
Method Details
-
add
Deprecated.- Specified by:
addin interfaceCollection
-
addAll
Deprecated.- Specified by:
addAllin interfaceCollection
-
clear
public void clear()Deprecated.- Specified by:
clearin interfaceCollection
-
contains
Deprecated.- Specified by:
containsin interfaceCollection
-
isEmpty
public boolean isEmpty()Deprecated.- Specified by:
isEmptyin interfaceCollection
-
iterator
Deprecated.- Specified by:
iteratorin interfaceCollection- Specified by:
iteratorin interfaceIterable
-
remove
Deprecated.- Specified by:
removein interfaceCollection
-
size
public int size()Deprecated.- Specified by:
sizein interfaceCollection
-
toArray
Deprecated.- Specified by:
toArrayin interfaceCollection
-
toArray
Deprecated.- Specified by:
toArrayin interfaceCollection
-
containsAll
Deprecated.- Specified by:
containsAllin interfaceCollection
-
removeAll
Deprecated.- Specified by:
removeAllin interfaceCollection
-
retainAll
Deprecated.- Specified by:
retainAllin interfaceCollection
-
equals
Deprecated.- Specified by:
equalsin interfaceCollection- Overrides:
equalsin classObject
-
hashCode
public int hashCode()Deprecated.- Specified by:
hashCodein interfaceCollection- Overrides:
hashCodein classObject
-
toString
Deprecated.
-