Package com.google.protobuf
Interface Internal.DoubleList
-
- All Superinterfaces:
java.util.Collection<java.lang.Double>
,Internal.ProtobufList<java.lang.Double>
,java.lang.Iterable<java.lang.Double>
,java.util.List<java.lang.Double>
,java.util.RandomAccess
- Enclosing class:
- Internal
public static interface Internal.DoubleList extends Internal.ProtobufList<java.lang.Double>
AList
implementation that avoids boxing the elements into Doubles if possible. Does not support null elements.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addDouble(double element)
LikeList.add(Object)
but more efficient in that it doesn't box the element.double
getDouble(int index)
LikeList.get(int)
but more efficient in that it doesn't box the returned value.Internal.DoubleList
mutableCopyWithCapacity(int capacity)
Returns a mutable clone of this list with the specified capacity.double
setDouble(int index, double 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
-
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
@CanIgnoreReturnValue double setDouble(int index, double element)
LikeList.set(int, Object)
but more efficient in that it doesn't box the element.
-
mutableCopyWithCapacity
Internal.DoubleList mutableCopyWithCapacity(int capacity)
Returns a mutable clone of this list with the specified capacity.- Specified by:
mutableCopyWithCapacity
in interfaceInternal.ProtobufList<java.lang.Double>
-
-