| java.util.ArrayList org.jboss.ha.framework.interfaces.ImmutableArrayList
ImmutableArrayList | public class ImmutableArrayList extends ArrayList (Code) | | Subclasses ArrayList but throws an UnsupportedOperationException from
any method that would change the internal data members. Any iterators
that are returned do the same.
All other methods are delegated to the ArrayList that is passed to the
constructor, so creating an instance of this class does not result in
making a copy of the internal element array of the source array list.
author: Brian Stansberry version: $Revision: 1.1 $ |
clear | public void clear()(Code) | | |
ensureCapacity | public void ensureCapacity(int arg0)(Code) | | |
hashCode | public int hashCode()(Code) | | |
isEmpty | public boolean isEmpty()(Code) | | |
removeRange | protected void removeRange(int arg0, int arg1)(Code) | | |
subList | public List subList(int fromIndex, int toIndex)(Code) | | |
trimToSize | public void trimToSize()(Code) | | |
|
|