public static interface Internal.BooleanList extends Internal.ProtobufList<Boolean>
List
implementation that avoids boxing the elements into Booleans if
possible. Does not support null elements.Modifier and Type | Method and Description |
---|---|
void |
addBoolean(boolean element)
Like
#add(Boolean) but more efficient in that it doesn't box the element. |
boolean |
getBoolean(int index)
Like
List.get(int) but more efficient in that it doesn't box the returned value. |
boolean |
setBoolean(int index,
boolean element)
Like
#set(int, Boolean) but more efficient in that it doesn't box the element. |
isModifiable, makeImmutable
boolean getBoolean(int index)
List.get(int)
but more efficient in that it doesn't box the returned value.void addBoolean(boolean element)
#add(Boolean)
but more efficient in that it doesn't box the element.boolean setBoolean(int index, boolean element)
#set(int, Boolean)
but more efficient in that it doesn't box the element.Copyright © 2008–2015 Google. All rights reserved.