Uses of Interface
org.apache.commons.collections4.BoundedCollection
-
Packages that use BoundedCollection Package Description org.apache.commons.collections4.collection This package contains implementations of theCollectioninterface.org.apache.commons.collections4.list This package contains implementations of theListinterface.org.apache.commons.collections4.queue This package contains implementations for theQueueinterface. -
-
Uses of BoundedCollection in org.apache.commons.collections4.collection
Classes in org.apache.commons.collections4.collection that implement BoundedCollection Modifier and Type Class Description classUnmodifiableBoundedCollection<E>UnmodifiableBoundedCollectiondecorates anotherBoundedCollectionto ensure it can't be altered.Methods in org.apache.commons.collections4.collection that return BoundedCollection Modifier and Type Method Description protected BoundedCollection<E>UnmodifiableBoundedCollection. decorated()static <E> BoundedCollection<E>UnmodifiableBoundedCollection. unmodifiableBoundedCollection(java.util.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 BoundedCollection Modifier and Type Method Description static <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 BoundedCollection Modifier and Type Class Description classFixedSizeList<E>Decorates 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 BoundedCollection Modifier and Type Class Description classCircularFifoQueue<E>CircularFifoQueue is a first-in first-out queue with a fixed size that replaces its oldest element if full.
-