Package com.google.protobuf
Interface Internal.DoubleList
- All Superinterfaces:
Collection<Double>,Internal.ProtobufList<Double>,Iterable<Double>,List<Double>,RandomAccess
- All Known Implementing Classes:
DoubleArrayList
- Enclosing class:
- Internal
A
List implementation that avoids boxing the elements into Doubles if
possible. Does not support null elements.-
Method Summary
Modifier and TypeMethodDescriptionvoidaddDouble(double element) LikeList.add(Object)but more efficient in that it doesn't box the element.doublegetDouble(int index) LikeList.get(int)but more efficient in that it doesn't box the returned value.mutableCopyWithCapacity(int capacity) Returns a mutable clone of this list with the specified capacity.doublesetDouble(int index, double element) LikeList.set(int, Object)but more efficient in that it doesn't box the element.Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArrayMethods inherited from interface com.google.protobuf.Internal.ProtobufList
isModifiable, makeImmutableMethods 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 Details
-
getDouble
double getDouble(int index) LikeList.get(int)but more efficient in that it doesn't box the returned value. -
addDouble
void addDouble(double element) LikeList.add(Object)but more efficient in that it doesn't box the element. -
setDouble
double setDouble(int index, double element) LikeList.set(int, Object)but more efficient in that it doesn't box the element. -
mutableCopyWithCapacity
Returns a mutable clone of this list with the specified capacity.- Specified by:
mutableCopyWithCapacityin interfaceInternal.ProtobufList<Double>
-