Uses of Interface
org.apache.commons.collections4.BoundedCollection
Package
Description
Implementations of the
Collection
interface.Implements the
List
interface.Implements the
Queue
interface.-
Uses of BoundedCollection in org.apache.commons.collections4.collection
Modifier and TypeClassDescriptionfinal class
UnmodifiableBoundedCollection
decorates anotherBoundedCollection
to ensure it can't be altered.Modifier and TypeMethodDescriptionprotected BoundedCollection
<E> UnmodifiableBoundedCollection.decorated()
static <E> BoundedCollection
<E> UnmodifiableBoundedCollection.unmodifiableBoundedCollection
(Collection<? extends E> collection) 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.Modifier 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
Modifier and TypeClassDescriptionclass
Decorates anotherList
to fix the size preventing add/remove. -
Uses of BoundedCollection in org.apache.commons.collections4.queue
Modifier and TypeClassDescriptionclass
CircularFifoQueue is a first-in first-out queue with a fixed size that replaces its oldest element if full.