Class FixedSizeList<E>
- java.lang.Object
-
- org.apache.commons.collections4.collection.AbstractCollectionDecorator<E>
-
- org.apache.commons.collections4.list.AbstractListDecorator<E>
-
- org.apache.commons.collections4.list.AbstractSerializableListDecorator<E>
-
- org.apache.commons.collections4.list.FixedSizeList<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>,java.util.List<E>,BoundedCollection<E>
public class FixedSizeList<E> extends AbstractSerializableListDecorator<E> implements BoundedCollection<E>
Decorates anotherListto fix the size preventing add/remove.The add, remove, clear and retain operations are unsupported. The set method is allowed (as it doesn't change the list size).
NOTE: Modifying the decorated list directly would results in influencing the outcome of method calls on this object. For example, the bounds of this list would reflect a newly added object to the underlying list.
This class is Serializable from Commons Collections 3.1.
- Since:
- 3.0
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(int index, E object)booleanadd(E object)booleanaddAll(int index, java.util.Collection<? extends E> coll)booleanaddAll(java.util.Collection<? extends E> coll)voidclear()static <E> FixedSizeList<E>fixedSizeList(java.util.List<E> list)Factory method to create a fixed size list.Eget(int index)intindexOf(java.lang.Object object)booleanisFull()Returns true if this collection is full and no new elements can be added.java.util.Iterator<E>iterator()intlastIndexOf(java.lang.Object object)java.util.ListIterator<E>listIterator()java.util.ListIterator<E>listIterator(int index)intmaxSize()Gets the maximum size of the collection (the bound).Eremove(int index)booleanremove(java.lang.Object object)booleanremoveAll(java.util.Collection<?> coll)booleanremoveIf(java.util.function.Predicate<? super E> filter)booleanretainAll(java.util.Collection<?> coll)Eset(int index, E object)java.util.List<E>subList(int fromIndex, int toIndex)-
Methods inherited from class org.apache.commons.collections4.list.AbstractListDecorator
equals, hashCode
-
Methods inherited from class org.apache.commons.collections4.collection.AbstractCollectionDecorator
contains, containsAll, isEmpty, size, toArray, toArray, toString
-
-
-
-
Method Detail
-
fixedSizeList
public static <E> FixedSizeList<E> fixedSizeList(java.util.List<E> list)
Factory method to create a fixed size list.- Type Parameters:
E- the type of the elements in the list- Parameters:
list- the list to decorate, must not be null- Returns:
- a new fixed size list
- Throws:
java.lang.NullPointerException- if list is null- Since:
- 4.0
-
add
public boolean add(E object)
- Specified by:
addin interfacejava.util.Collection<E>- Specified by:
addin interfacejava.util.List<E>- Overrides:
addin classAbstractCollectionDecorator<E>
-
add
public void add(int index, E object)- Specified by:
addin interfacejava.util.List<E>- Overrides:
addin classAbstractListDecorator<E>
-
addAll
public boolean addAll(java.util.Collection<? extends E> coll)
- Specified by:
addAllin interfacejava.util.Collection<E>- Specified by:
addAllin interfacejava.util.List<E>- Overrides:
addAllin classAbstractCollectionDecorator<E>
-
addAll
public boolean addAll(int index, java.util.Collection<? extends E> coll)- Specified by:
addAllin interfacejava.util.List<E>- Overrides:
addAllin classAbstractListDecorator<E>
-
clear
public void clear()
- Specified by:
clearin interfacejava.util.Collection<E>- Specified by:
clearin interfacejava.util.List<E>- Overrides:
clearin classAbstractCollectionDecorator<E>
-
get
public E get(int index)
- Specified by:
getin interfacejava.util.List<E>- Overrides:
getin classAbstractListDecorator<E>
-
indexOf
public int indexOf(java.lang.Object object)
- Specified by:
indexOfin interfacejava.util.List<E>- Overrides:
indexOfin classAbstractListDecorator<E>
-
iterator
public java.util.Iterator<E> iterator()
-
lastIndexOf
public int lastIndexOf(java.lang.Object object)
- Specified by:
lastIndexOfin interfacejava.util.List<E>- Overrides:
lastIndexOfin classAbstractListDecorator<E>
-
listIterator
public java.util.ListIterator<E> listIterator()
- Specified by:
listIteratorin interfacejava.util.List<E>- Overrides:
listIteratorin classAbstractListDecorator<E>
-
listIterator
public java.util.ListIterator<E> listIterator(int index)
- Specified by:
listIteratorin interfacejava.util.List<E>- Overrides:
listIteratorin classAbstractListDecorator<E>
-
remove
public E remove(int index)
- Specified by:
removein interfacejava.util.List<E>- Overrides:
removein classAbstractListDecorator<E>
-
remove
public boolean remove(java.lang.Object object)
- Specified by:
removein interfacejava.util.Collection<E>- Specified by:
removein interfacejava.util.List<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>- Specified by:
removeAllin interfacejava.util.List<E>- Overrides:
removeAllin classAbstractCollectionDecorator<E>
-
retainAll
public boolean retainAll(java.util.Collection<?> coll)
- Specified by:
retainAllin interfacejava.util.Collection<E>- Specified by:
retainAllin interfacejava.util.List<E>- Overrides:
retainAllin classAbstractCollectionDecorator<E>
-
set
public E set(int index, E object)
- Specified by:
setin interfacejava.util.List<E>- Overrides:
setin classAbstractListDecorator<E>
-
subList
public java.util.List<E> subList(int fromIndex, int toIndex)
- Specified by:
subListin interfacejava.util.List<E>- Overrides:
subListin classAbstractListDecorator<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.
-
-