Uses of Interface
org.apache.commons.collections.BoundedCollection
-
Packages that use BoundedCollection Package Description org.apache.commons.collections This package contains the interfaces and utilities shared across all the subpackages of this component.org.apache.commons.collections.buffer This package contains implementations of theBufferinterface.org.apache.commons.collections.collection This package contains implementations of theCollectioninterface.org.apache.commons.collections.list This package contains implementations of theListinterface. -
-
Uses of BoundedCollection in org.apache.commons.collections
Classes in org.apache.commons.collections that implement BoundedCollection Modifier and Type Class Description classBoundedFifoBufferDeprecated.Moved to buffer subpackage. -
Uses of BoundedCollection in org.apache.commons.collections.buffer
Classes in org.apache.commons.collections.buffer that implement BoundedCollection Modifier and Type Class Description classBoundedBufferDecorates anotherBufferto ensure a fixed maximum size.classBoundedFifoBufferThe BoundedFifoBuffer is a very efficient implementation ofBufferthat is of a fixed size.classCircularFifoBufferCircularFifoBuffer 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 BoundedCollection Modifier and Type Class Description classUnmodifiableBoundedCollectionUnmodifiableBoundedCollectiondecorates anotherBoundedCollectionto ensure it can't be altered.Methods in org.apache.commons.collections.collection that return BoundedCollection Modifier and Type Method Description static BoundedCollectionUnmodifiableBoundedCollection. decorate(BoundedCollection coll)Factory method to create an unmodifiable bounded collection.static BoundedCollectionUnmodifiableBoundedCollection. decorateUsing(java.util.Collection coll)Factory method to create an unmodifiable bounded collection.Methods in org.apache.commons.collections.collection with parameters of type BoundedCollection Modifier and Type Method Description static BoundedCollectionUnmodifiableBoundedCollection. decorate(BoundedCollection coll)Factory method to create an unmodifiable bounded collection.Constructors in org.apache.commons.collections.collection with parameters of type BoundedCollection Constructor Description UnmodifiableBoundedCollection(BoundedCollection coll)Constructor that wraps (not copies). -
Uses of BoundedCollection in org.apache.commons.collections.list
Classes in org.apache.commons.collections.list that implement BoundedCollection Modifier and Type Class Description classFixedSizeListDecorates anotherListto fix the size preventing add/remove.
-