Class UnmodifiableBoundedCollection<E>
- java.lang.Object
-
- org.apache.commons.collections4.collection.AbstractCollectionDecorator<E>
-
- org.apache.commons.collections4.collection.UnmodifiableBoundedCollection<E>
-
- Type Parameters:
E
- the type of elements in this collection
- All Implemented Interfaces:
Serializable
,Iterable<E>
,Collection<E>
,BoundedCollection<E>
,Unmodifiable
public final class UnmodifiableBoundedCollection<E> extends AbstractCollectionDecorator<E> implements BoundedCollection<E>, Unmodifiable
UnmodifiableBoundedCollection
decorates anotherBoundedCollection
to ensure it can't be altered.If a BoundedCollection is first wrapped in some other collection decorator, such as synchronized or predicated, the BoundedCollection methods are no longer accessible. The factory on this class will attempt to retrieve the bounded nature by examining the package scope variables.
This class is Serializable from Commons Collections 3.1.
Attempts to modify it will result in an UnsupportedOperationException.
- Since:
- 3.0
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
add(E object)
boolean
addAll(Collection<? extends E> coll)
void
clear()
protected BoundedCollection<E>
decorated()
Gets the collection being decorated.boolean
isFull()
Returns true if this collection is full and no new elements can be added.Iterator<E>
iterator()
int
maxSize()
Gets the maximum size of the collection (the bound).boolean
remove(Object object)
boolean
removeAll(Collection<?> coll)
boolean
retainAll(Collection<?> coll)
static <E> BoundedCollection<E>
unmodifiableBoundedCollection(Collection<? extends E> coll)
Factory method to create an unmodifiable bounded collection.static <E> BoundedCollection<E>
unmodifiableBoundedCollection(BoundedCollection<? extends E> coll)
Factory method to create an unmodifiable bounded collection.-
Methods inherited from class org.apache.commons.collections4.collection.AbstractCollectionDecorator
contains, containsAll, isEmpty, setCollection, size, toArray, toArray, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
contains, containsAll, equals, hashCode, isEmpty, parallelStream, removeIf, size, spliterator, stream, toArray, toArray, toArray
-
-
-
-
Method Detail
-
unmodifiableBoundedCollection
public static <E> BoundedCollection<E> unmodifiableBoundedCollection(BoundedCollection<? extends E> coll)
Factory method to create an unmodifiable bounded collection.- Type Parameters:
E
- the type of the elements in the collection- Parameters:
coll
- theBoundedCollection
to decorate, must not be null- Returns:
- a new unmodifiable bounded collection
- Throws:
NullPointerException
- ifcoll
isnull
- Since:
- 4.0
-
unmodifiableBoundedCollection
public static <E> BoundedCollection<E> unmodifiableBoundedCollection(Collection<? extends E> coll)
Factory method to create an unmodifiable bounded collection.This method is capable of drilling down through up to 1000 other decorators to find a suitable BoundedCollection.
- Type Parameters:
E
- the type of the elements in the collection- Parameters:
coll
- theBoundedCollection
to decorate, must not be null- Returns:
- a new unmodifiable bounded collection
- Throws:
NullPointerException
- if coll is nullIllegalArgumentException
- if coll is not aBoundedCollection
- Since:
- 4.0
-
iterator
public Iterator<E> iterator()
- Specified by:
iterator
in interfaceCollection<E>
- Specified by:
iterator
in interfaceIterable<E>
- Overrides:
iterator
in classAbstractCollectionDecorator<E>
-
add
public boolean add(E object)
- Specified by:
add
in interfaceCollection<E>
- Overrides:
add
in classAbstractCollectionDecorator<E>
-
addAll
public boolean addAll(Collection<? extends E> coll)
- Specified by:
addAll
in interfaceCollection<E>
- Overrides:
addAll
in classAbstractCollectionDecorator<E>
-
clear
public void clear()
- Specified by:
clear
in interfaceCollection<E>
- Overrides:
clear
in classAbstractCollectionDecorator<E>
-
remove
public boolean remove(Object object)
- Specified by:
remove
in interfaceCollection<E>
- Overrides:
remove
in classAbstractCollectionDecorator<E>
-
removeAll
public boolean removeAll(Collection<?> coll)
- Specified by:
removeAll
in interfaceCollection<E>
- Overrides:
removeAll
in classAbstractCollectionDecorator<E>
-
retainAll
public boolean retainAll(Collection<?> coll)
- Specified by:
retainAll
in interfaceCollection<E>
- Overrides:
retainAll
in classAbstractCollectionDecorator<E>
-
isFull
public boolean isFull()
Description copied from interface:BoundedCollection
Returns true if this collection is full and no new elements can be added.- Specified by:
isFull
in interfaceBoundedCollection<E>
- Returns:
true
if the collection is full
-
maxSize
public int maxSize()
Description copied from interface:BoundedCollection
Gets the maximum size of the collection (the bound).- Specified by:
maxSize
in interfaceBoundedCollection<E>
- Returns:
- the maximum number of elements the collection can hold
-
decorated
protected BoundedCollection<E> decorated()
Description copied from class:AbstractCollectionDecorator
Gets the collection being decorated. All access to the decorated collection goes via this method.- Overrides:
decorated
in classAbstractCollectionDecorator<E>
- Returns:
- the decorated collection
-
-