Uses of Interface
org.apache.commons.collections4.BoundedCollection
Packages that use BoundedCollection
Package
Description
This package contains implementations of the
Collection interface.This package contains implementations of the
List interface.This package contains implementations for the
Queue interface.-
Uses of BoundedCollection in org.apache.commons.collections4.collection
Classes in org.apache.commons.collections4.collection that implement BoundedCollectionModifier and TypeClassDescriptionfinal classUnmodifiableBoundedCollectiondecorates anotherBoundedCollectionto ensure it can't be altered.Methods in org.apache.commons.collections4.collection that return BoundedCollectionModifier and TypeMethodDescriptionprotected BoundedCollection<E>UnmodifiableBoundedCollection.decorated()static <E> BoundedCollection<E>UnmodifiableBoundedCollection.unmodifiableBoundedCollection(Collection<? extends E> coll) Factory method to create an unmodifiable bounded collection.static <E> BoundedCollection<E>UnmodifiableBoundedCollection.unmodifiableBoundedCollection(BoundedCollection<? extends E> coll) Factory method to create an unmodifiable bounded collection.Methods in org.apache.commons.collections4.collection with parameters of type BoundedCollectionModifier and TypeMethodDescriptionstatic <E> BoundedCollection<E>UnmodifiableBoundedCollection.unmodifiableBoundedCollection(BoundedCollection<? extends E> coll) Factory method to create an unmodifiable bounded collection. -
Uses of BoundedCollection in org.apache.commons.collections4.list
Classes in org.apache.commons.collections4.list that implement BoundedCollectionModifier and TypeClassDescriptionclassDecorates anotherListto fix the size preventing add/remove. -
Uses of BoundedCollection in org.apache.commons.collections4.queue
Classes in org.apache.commons.collections4.queue that implement BoundedCollectionModifier and TypeClassDescriptionclassCircularFifoQueue is a first-in first-out queue with a fixed size that replaces its oldest element if full.