public static interface Internal.FloatList extends Internal.ProtobufList<java.lang.Float>
List
implementation that avoids boxing the elements into Floats if
possible. Does not support null elements.Modifier and Type | Method and Description |
---|---|
void |
addFloat(float element)
Like
List.add(Object) but more efficient in that it doesn't box the element. |
float |
getFloat(int index)
Like
List.get(int) but more efficient in that it doesn't box the returned value. |
float |
setFloat(int index,
float element)
Like
List.set(int, Object) but more efficient in that it doesn't box the element. |
isModifiable, makeImmutable
float getFloat(int index)
List.get(int)
but more efficient in that it doesn't box the returned value.void addFloat(float element)
List.add(Object)
but more efficient in that it doesn't box the element.float setFloat(int index, float element)
List.set(int, Object)
but more efficient in that it doesn't box the element.