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<E> |
UnmodifiableBoundedCollection.decorated() |
static <E> BoundedCollection<E> |
UnmodifiableBoundedCollection.unmodifiableBoundedCollection(BoundedCollection<? extends E> coll)
Factory method to create an unmodifiable bounded collection.
|
static <E> BoundedCollection<E> |
UnmodifiableBoundedCollection.unmodifiableBoundedCollection(Collection<? extends E> coll)
Factory method to create an unmodifiable bounded collection.
|
Modifier and Type | Method and Description |
---|---|
static <E> BoundedCollection<E> |
UnmodifiableBoundedCollection.unmodifiableBoundedCollection(BoundedCollection<? extends E> coll)
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.
|
Copyright © 2001–2018 The Apache Software Foundation. All rights reserved.