Class AbstractCollectionDecorator

  • All Implemented Interfaces:
    java.lang.Iterable, java.util.Collection
    Direct Known Subclasses:
    AbstractBagDecorator, AbstractBufferDecorator, AbstractListDecorator, AbstractSerializableCollectionDecorator, AbstractSetDecorator

    @Deprecated(since="2021-04-30")
    public abstract class AbstractCollectionDecorator
    extends java.lang.Object
    implements java.util.Collection
    Deprecated.
    Commons Collections 3 is in maintenance mode. Commons Collections 4 should be used instead.
    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

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      boolean add​(java.lang.Object object)
      Deprecated.
       
      boolean addAll​(java.util.Collection coll)
      Deprecated.
       
      void clear()
      Deprecated.
       
      boolean contains​(java.lang.Object object)
      Deprecated.
       
      boolean containsAll​(java.util.Collection coll)
      Deprecated.
       
      boolean equals​(java.lang.Object object)
      Deprecated.
       
      int hashCode()
      Deprecated.
       
      boolean isEmpty()
      Deprecated.
       
      java.util.Iterator iterator()
      Deprecated.
       
      boolean remove​(java.lang.Object object)
      Deprecated.
       
      boolean removeAll​(java.util.Collection coll)
      Deprecated.
       
      boolean retainAll​(java.util.Collection coll)
      Deprecated.
       
      int size()
      Deprecated.
       
      java.lang.Object[] toArray()
      Deprecated.
       
      java.lang.Object[] toArray​(java.lang.Object[] object)
      Deprecated.
       
      java.lang.String toString()
      Deprecated.
       
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
      • Methods inherited from interface java.util.Collection

        parallelStream, removeIf, spliterator, stream, toArray
      • Methods inherited from interface java.lang.Iterable

        forEach
    • Method Detail

      • add

        public boolean add​(java.lang.Object object)
        Deprecated.
        Specified by:
        add in interface java.util.Collection
      • addAll

        public boolean addAll​(java.util.Collection coll)
        Deprecated.
        Specified by:
        addAll in interface java.util.Collection
      • clear

        public void clear()
        Deprecated.
        Specified by:
        clear in interface java.util.Collection
      • contains

        public boolean contains​(java.lang.Object object)
        Deprecated.
        Specified by:
        contains in interface java.util.Collection
      • isEmpty

        public boolean isEmpty()
        Deprecated.
        Specified by:
        isEmpty in interface java.util.Collection
      • iterator

        public java.util.Iterator iterator()
        Deprecated.
        Specified by:
        iterator in interface java.util.Collection
        Specified by:
        iterator in interface java.lang.Iterable
      • remove

        public boolean remove​(java.lang.Object object)
        Deprecated.
        Specified by:
        remove in interface java.util.Collection
      • size

        public int size()
        Deprecated.
        Specified by:
        size in interface java.util.Collection
      • toArray

        public java.lang.Object[] toArray()
        Deprecated.
        Specified by:
        toArray in interface java.util.Collection
      • toArray

        public java.lang.Object[] toArray​(java.lang.Object[] object)
        Deprecated.
        Specified by:
        toArray in interface java.util.Collection
      • containsAll

        public boolean containsAll​(java.util.Collection coll)
        Deprecated.
        Specified by:
        containsAll in interface java.util.Collection
      • removeAll

        public boolean removeAll​(java.util.Collection coll)
        Deprecated.
        Specified by:
        removeAll in interface java.util.Collection
      • retainAll

        public boolean retainAll​(java.util.Collection coll)
        Deprecated.
        Specified by:
        retainAll in interface java.util.Collection
      • equals

        public boolean equals​(java.lang.Object object)
        Deprecated.
        Specified by:
        equals in interface java.util.Collection
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Deprecated.
        Specified by:
        hashCode in interface java.util.Collection
        Overrides:
        hashCode in class java.lang.Object
      • toString

        public java.lang.String toString()
        Deprecated.
        Overrides:
        toString in class java.lang.Object