com.sun.istack
Class FinalArrayList<T>
java.lang.Object
java.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList<T>
com.sun.istack.FinalArrayList<T>
- All Implemented Interfaces:
- Serializable, Cloneable, Iterable<T>, Collection<T>, List<T>, RandomAccess
public final class FinalArrayList<T>
- extends ArrayList<T>
ArrayList
with the final keyword.
This gives HotSpot a better hint that all methods can be inlined.
- Author:
- Kohsuke Kawaguchi
- See Also:
- Serialized Form
Methods inherited from class java.util.ArrayList |
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, removeRange, retainAll, set, size, subList, toArray, toArray, trimToSize |
FinalArrayList
public FinalArrayList(int initialCapacity)
FinalArrayList
public FinalArrayList()
FinalArrayList
public FinalArrayList(Collection<? extends T> ts)
Copyright © 2012 JBoss by Red Hat. All Rights Reserved.