| 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 | Description |
|---|---|---|
class |
UnmodifiableBoundedCollection<E> |
UnmodifiableBoundedCollection decorates another
BoundedCollection to ensure it can't be altered. |
| 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.
|
| Modifier and Type | Method | Description |
|---|---|---|
static <E> BoundedCollection<E> |
UnmodifiableBoundedCollection.unmodifiableBoundedCollection(BoundedCollection<? extends E> coll) |
Factory method to create an unmodifiable bounded collection.
|
| Modifier and Type | Class | Description |
|---|---|---|
class |
FixedSizeList<E> |
Decorates another
List to fix the size preventing add/remove. |
| Modifier and Type | Class | Description |
|---|---|---|
class |
CircularFifoQueue<E> |
CircularFifoQueue is a first-in first-out queue with a fixed size that
replaces its oldest element if full.
|
Copyright © 2001-2019 - Apache Software Foundation