| Package | Description |
|---|---|
| org.apache.commons.collections4.collection |
This package contains implementations of the
Collection interface.
|
| org.apache.commons.collections4.list |
This package contains implementations of the
List interface.
|
| org.apache.commons.collections4.queue |
This package contains implementations for the
Queue interface.
|
| Modifier and Type | Class and Description |
|---|---|
class |
UnmodifiableBoundedCollection<E>
UnmodifiableBoundedCollection decorates another
BoundedCollection to ensure it can't be altered.
|
| Modifier and Type | Method and Description |
|---|---|
protected BoundedCollection |
UnmodifiableBoundedCollection.decorated()
|
static <E> BoundedCollection |
UnmodifiableBoundedCollection.unmodifiableBoundedCollection(BoundedCollection
Factory method to create an unmodifiable bounded collection.
|
static <E> BoundedCollection |
UnmodifiableBoundedCollection.unmodifiableBoundedCollection(Collection
Factory method to create an unmodifiable bounded collection.
|
| Modifier and Type | Method and Description |
|---|---|
static <E> BoundedCollection |
UnmodifiableBoundedCollection.unmodifiableBoundedCollection(BoundedCollection
Factory method to create an unmodifiable bounded collection.
|
| Modifier and Type | Class and Description |
|---|---|
class |
FixedSizeList<E>
Decorates another
List to fix the size preventing add/remove.
|
| Modifier and Type | Class and Description |
|---|---|
class |
CircularFifoQueue<E>
CircularFifoQueue is a first-in first-out queue with a fixed size that replaces its oldest element if full.
|