Package org.jf.dexlib2.dexbacked.util
Class FixedSizeList<T>
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractList<T>
-
- org.jf.dexlib2.dexbacked.util.FixedSizeList<T>
-
- Type Parameters:
T
- The type of the item that this list contains
- All Implemented Interfaces:
java.lang.Iterable<T>
,java.util.Collection<T>
,java.util.List<T>
public abstract class FixedSizeList<T> extends java.util.AbstractList<T>
This provides a thin facade over AbstractList, to take care of bounds checking.
-
-
Constructor Summary
Constructors Constructor Description FixedSizeList()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description T
get(int index)
abstract T
readItem(int index)
Reads the item atindex
-
Methods inherited from class java.util.AbstractList
add, add, addAll, clear, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, removeRange, set, subList
-
Methods inherited from class java.util.AbstractCollection
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, size, toArray, toArray, toString
-
-