Uses of Interface
org.apache.commons.collections.BoundedCollection
Packages that use BoundedCollection
Package
Description
This package contains the interfaces and utilities shared across all the subpackages of this component.
This package contains implementations of the
Buffer interface.
This package contains implementations of the
Collection interface.
This package contains implementations of the
List interface.-
Uses of BoundedCollection in org.apache.commons.collections
Classes in org.apache.commons.collections that implement BoundedCollection -
Uses of BoundedCollection in org.apache.commons.collections.buffer
Classes in org.apache.commons.collections.buffer that implement BoundedCollectionModifier and TypeClassDescriptionclassDecorates anotherBufferto ensure a fixed maximum size.classThe BoundedFifoBuffer is a very efficient implementation ofBufferthat is of a fixed size.classCircularFifoBuffer is a first in first out buffer with a fixed size that replaces its oldest element if full. -
Uses of BoundedCollection in org.apache.commons.collections.collection
Classes in org.apache.commons.collections.collection that implement BoundedCollectionModifier and TypeClassDescriptionfinal classUnmodifiableBoundedCollectiondecorates anotherBoundedCollectionto ensure it can't be altered.Methods in org.apache.commons.collections.collection that return BoundedCollectionModifier and TypeMethodDescriptionstatic BoundedCollectionUnmodifiableBoundedCollection.decorate(BoundedCollection coll) Factory method to create an unmodifiable bounded collection.static BoundedCollectionUnmodifiableBoundedCollection.decorateUsing(Collection coll) Factory method to create an unmodifiable bounded collection.Methods in org.apache.commons.collections.collection with parameters of type BoundedCollectionModifier and TypeMethodDescriptionstatic BoundedCollectionUnmodifiableBoundedCollection.decorate(BoundedCollection coll) Factory method to create an unmodifiable bounded collection. -
Uses of BoundedCollection in org.apache.commons.collections.list
Classes in org.apache.commons.collections.list that implement BoundedCollectionModifier and TypeClassDescriptionclassDecorates anotherListto fix the size preventing add/remove.