Package com.google.protobuf
Interface Internal.IntList
-
- All Superinterfaces:
java.util.Collection<java.lang.Integer>,Internal.ProtobufList<java.lang.Integer>,java.lang.Iterable<java.lang.Integer>,java.util.List<java.lang.Integer>,java.util.RandomAccess
- Enclosing class:
- Internal
public static interface Internal.IntList extends Internal.ProtobufList<java.lang.Integer>
AListimplementation that avoids boxing the elements into Integers if possible. Does not support null elements.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddInt(int element)LikeList.add(Object)but more efficient in that it doesn't box the element.intgetInt(int index)LikeList.get(int)but more efficient in that it doesn't box the returned value.Internal.IntListmutableCopyWithCapacity(int capacity)Returns a mutable clone of this list with the specified capacity.intsetInt(int index, int element)LikeList.set(int, Object)but more efficient in that it doesn't box the element.-
Methods inherited from interface com.google.protobuf.Internal.ProtobufList
isModifiable, makeImmutable
-
Methods inherited from interface java.util.List
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
-
-
-
-
Method Detail
-
getInt
int getInt(int index)
LikeList.get(int)but more efficient in that it doesn't box the returned value.
-
addInt
void addInt(int element)
LikeList.add(Object)but more efficient in that it doesn't box the element.
-
setInt
int setInt(int index, int element)LikeList.set(int, Object)but more efficient in that it doesn't box the element.
-
mutableCopyWithCapacity
Internal.IntList mutableCopyWithCapacity(int capacity)
Returns a mutable clone of this list with the specified capacity.- Specified by:
mutableCopyWithCapacityin interfaceInternal.ProtobufList<java.lang.Integer>
-
-