Package org.jf.dexlib2.dexbacked.util
Class VariableSizeList<T>
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractList<E>
-
- java.util.AbstractSequentialList<T>
-
- org.jf.dexlib2.dexbacked.util.VariableSizeList<T>
-
- All Implemented Interfaces:
java.lang.Iterable<T>
,java.util.Collection<T>
,java.util.List<T>
public abstract class VariableSizeList<T> extends java.util.AbstractSequentialList<T>
-
-
Constructor Summary
Constructors Constructor Description VariableSizeList(DexBuffer buffer, int offset, int size)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description VariableSizeListIterator<T>
listIterator()
VariableSizeListIterator<T>
listIterator(int index)
protected abstract T
readNextItem(DexReader reader, int index)
int
size()
-
Methods inherited from class java.util.AbstractSequentialList
add, addAll, get, iterator, remove, set
-
Methods inherited from class java.util.AbstractList
add, clear, equals, hashCode, indexOf, lastIndexOf, removeRange, subList
-
Methods inherited from class java.util.AbstractCollection
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
-
-
-
-
Constructor Detail
-
VariableSizeList
public VariableSizeList(@Nonnull DexBuffer buffer, int offset, int size)
-
-
Method Detail
-
listIterator
@Nonnull public VariableSizeListIterator<T> listIterator()
-
size
public int size()
-
listIterator
@Nonnull public VariableSizeListIterator<T> listIterator(int index)
-
-