|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use BoundedCollection | |
---|---|
org.apache.commons.collections.buffer |
This package contains implementations of the
Buffer interface. |
org.apache.commons.collections.collection |
This package contains implementations of the
Collection interface. |
org.apache.commons.collections.list |
This package contains implementations of the
List interface. |
Uses of BoundedCollection in org.apache.commons.collections.buffer |
---|
Classes in org.apache.commons.collections.buffer that implement BoundedCollection | |
---|---|
class |
BoundedFifoBuffer<E>
The BoundedFifoBuffer is a very efficient implementation of Buffer that does not alter the size of the buffer at runtime. |
class |
CircularFifoBuffer<E>
CircularFifoBuffer 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 | |
---|---|
class |
UnmodifiableBoundedCollection<E>
UnmodifiableBoundedCollection decorates another
BoundedCollection to ensure it can't be altered. |
Methods in org.apache.commons.collections.collection that return BoundedCollection | ||
---|---|---|
static
|
UnmodifiableBoundedCollection.decorate(BoundedCollection<E> coll)
Factory method to create an unmodifiable bounded collection. |
|
static
|
UnmodifiableBoundedCollection.decorateUsing(Collection<E> coll)
Factory method to create an unmodifiable bounded collection. |
Methods in org.apache.commons.collections.collection with parameters of type BoundedCollection | ||
---|---|---|
static
|
UnmodifiableBoundedCollection.decorate(BoundedCollection<E> 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 BoundedCollection | |
---|---|
class |
FixedSizeList<E>
Decorates another List to fix the size preventing add/remove. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |