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:
 java.io.Serializable,java.lang.Iterable<E>,java.util.Collection<E>,BoundedCollection<E>,Unmodifiable
public final class UnmodifiableBoundedCollection<E> extends AbstractCollectionDecorator<E> implements BoundedCollection<E>, Unmodifiable
UnmodifiableBoundedCollectiondecorates anotherBoundedCollectionto 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 booleanadd(E object)booleanaddAll(java.util.Collection<? extends E> coll)voidclear()booleanisFull()Returns true if this collection is full and no new elements can be added.java.util.Iterator<E>iterator()intmaxSize()Gets the maximum size of the collection (the bound).booleanremove(java.lang.Object object)booleanremoveAll(java.util.Collection<?> coll)booleanremoveIf(java.util.function.Predicate<? super E> filter)booleanretainAll(java.util.Collection<?> coll)static <E> BoundedCollection<E>unmodifiableBoundedCollection(java.util.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, size, toArray, toArray, toString 
- 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait 
 - 
 
 - 
 
- 
- 
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- theBoundedCollectionto decorate, must not be null- Returns:
 - a new unmodifiable bounded collection
 - Throws:
 java.lang.NullPointerException- ifcollisnull- Since:
 - 4.0
 
 
- 
unmodifiableBoundedCollection
public static <E> BoundedCollection<E> unmodifiableBoundedCollection(java.util.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- theBoundedCollectionto decorate, must not be null- Returns:
 - a new unmodifiable bounded collection
 - Throws:
 java.lang.NullPointerException- if coll is nulljava.lang.IllegalArgumentException- if coll is not aBoundedCollection- Since:
 - 4.0
 
 
- 
iterator
public java.util.Iterator<E> iterator()
- Specified by:
 iteratorin interfacejava.util.Collection<E>- Specified by:
 iteratorin interfacejava.lang.Iterable<E>- Overrides:
 iteratorin classAbstractCollectionDecorator<E>
 
- 
add
public boolean add(E object)
- Specified by:
 addin interfacejava.util.Collection<E>- Overrides:
 addin classAbstractCollectionDecorator<E>
 
- 
addAll
public boolean addAll(java.util.Collection<? extends E> coll)
- Specified by:
 addAllin interfacejava.util.Collection<E>- Overrides:
 addAllin classAbstractCollectionDecorator<E>
 
- 
clear
public void clear()
- Specified by:
 clearin interfacejava.util.Collection<E>- Overrides:
 clearin classAbstractCollectionDecorator<E>
 
- 
remove
public boolean remove(java.lang.Object object)
- Specified by:
 removein interfacejava.util.Collection<E>- Overrides:
 removein classAbstractCollectionDecorator<E>
 
- 
removeIf
public boolean removeIf(java.util.function.Predicate<? super E> filter)
- Specified by:
 removeIfin interfacejava.util.Collection<E>- Overrides:
 removeIfin classAbstractCollectionDecorator<E>- Since:
 - 4.4
 
 
- 
removeAll
public boolean removeAll(java.util.Collection<?> coll)
- Specified by:
 removeAllin interfacejava.util.Collection<E>- Overrides:
 removeAllin classAbstractCollectionDecorator<E>
 
- 
retainAll
public boolean retainAll(java.util.Collection<?> coll)
- Specified by:
 retainAllin interfacejava.util.Collection<E>- Overrides:
 retainAllin classAbstractCollectionDecorator<E>
 
- 
isFull
public boolean isFull()
Description copied from interface:BoundedCollectionReturns true if this collection is full and no new elements can be added.- Specified by:
 isFullin interfaceBoundedCollection<E>- Returns:
 trueif the collection is full.
 
- 
maxSize
public int maxSize()
Description copied from interface:BoundedCollectionGets the maximum size of the collection (the bound).- Specified by:
 maxSizein interfaceBoundedCollection<E>- Returns:
 - the maximum number of elements the collection can hold.
 
 
 - 
 
 -