Package com.google.protobuf
Interface Internal.FloatList
-
- All Superinterfaces:
java.util.Collection<java.lang.Float>,Internal.ProtobufList<java.lang.Float>,java.lang.Iterable<java.lang.Float>,java.util.List<java.lang.Float>,java.util.RandomAccess
- Enclosing class:
- Internal
public static interface Internal.FloatList extends Internal.ProtobufList<java.lang.Float>
AListimplementation that avoids boxing the elements into Floats if possible. Does not support null elements.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddFloat(float element)LikeList.add(Object)but more efficient in that it doesn't box the element.floatgetFloat(int index)LikeList.get(int)but more efficient in that it doesn't box the returned value.Internal.FloatListmutableCopyWithCapacity(int capacity)Returns a mutable clone of this list with the specified capacity.floatsetFloat(int index, float 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
-
getFloat
float getFloat(int index)
LikeList.get(int)but more efficient in that it doesn't box the returned value.
-
addFloat
void addFloat(float element)
LikeList.add(Object)but more efficient in that it doesn't box the element.
-
setFloat
float setFloat(int index, float element)LikeList.set(int, Object)but more efficient in that it doesn't box the element.
-
mutableCopyWithCapacity
Internal.FloatList mutableCopyWithCapacity(int capacity)
Returns a mutable clone of this list with the specified capacity.- Specified by:
mutableCopyWithCapacityin interfaceInternal.ProtobufList<java.lang.Float>
-
-