public class LazyStringArrayList extends AbstractProtobufList<java.lang.String> implements LazyStringList, java.util.RandomAccess
LazyStringList that wraps an ArrayList. Each
element is one of String, ByteString, or byte[]. It caches the last one
requested which is most likely the one needed next. This minimizes memory
usage while satisfying the most common use cases.
Note that this implementation is not synchronized. If multiple threads access an ArrayList instance concurrently, and at least one of the threads modifies the list structurally, it must be synchronized externally. (A structural modification is any operation that adds or deletes one or more elements, or explicitly resizes the backing array; merely setting the value of an element is not a structural modification.) This is typically accomplished by synchronizing on some object that naturally encapsulates the list.
If the implementation is accessed via concurrent reads, this is thread safe. Conversions are done in a thread safe manner. It's possible that the conversion may happen more than once if two threads attempt to access the same element and the modifications were not visible to each other, but this will not result in any corruption of the list or change in behavior other than performance.
| Modifier and Type | Class and Description |
|---|---|
private static class |
LazyStringArrayList.ByteArrayListView |
private static class |
LazyStringArrayList.ByteStringListView |
| Modifier and Type | Field and Description |
|---|---|
static LazyStringList |
EMPTY |
private static LazyStringArrayList |
EMPTY_LIST |
private java.util.List<java.lang.Object> |
list |
DEFAULT_CAPACITY| Modifier | Constructor and Description |
|---|---|
|
LazyStringArrayList() |
private |
LazyStringArrayList(java.util.ArrayList<java.lang.Object> list) |
|
LazyStringArrayList(int intialCapacity) |
|
LazyStringArrayList(LazyStringList from) |
|
LazyStringArrayList(java.util.List<java.lang.String> from) |
| Modifier and Type | Method and Description |
|---|---|
void |
add(byte[] element)
Appends the specified element to the end of this list (optional
operation).
|
void |
add(ByteString element)
Appends the specified element to the end of this list (optional
operation).
|
private void |
add(int index,
byte[] element) |
private void |
add(int index,
ByteString element) |
void |
add(int index,
java.lang.String element) |
boolean |
addAll(java.util.Collection<? extends java.lang.String> c) |
boolean |
addAll(int index,
java.util.Collection<? extends java.lang.String> c) |
boolean |
addAllByteArray(java.util.Collection<byte[]> c)
Appends all elements in the specified byte[] collection to the end of
this list.
|
boolean |
addAllByteString(java.util.Collection<? extends ByteString> values)
Appends all elements in the specified ByteString collection to the end of
this list.
|
private static byte[] |
asByteArray(java.lang.Object o) |
java.util.List<byte[]> |
asByteArrayList()
Returns a mutable view of this list.
|
private static ByteString |
asByteString(java.lang.Object o) |
java.util.List<ByteString> |
asByteStringList()
Returns a view of the data as a list of ByteStrings.
|
private static java.lang.String |
asString(java.lang.Object o) |
void |
clear() |
(package private) static LazyStringArrayList |
emptyList() |
java.lang.String |
get(int index) |
byte[] |
getByteArray(int index)
Returns the element at the specified position in this list as byte[].
|
ByteString |
getByteString(int index)
Returns the element at the specified position in this list as a ByteString.
|
java.lang.Object |
getRaw(int index)
Returns the element at the specified position in this list as an Object
that will either be a String or a ByteString.
|
java.util.List<?> |
getUnderlyingElements()
Returns an unmodifiable List of the underlying elements, each of which is
either a
String or its equivalent UTF-8 encoded ByteString
or byte[]. |
LazyStringList |
getUnmodifiableView()
Returns an unmodifiable view of the list.
|
void |
mergeFrom(LazyStringList other)
Merges all elements from another LazyStringList into this one.
|
LazyStringArrayList |
mutableCopyWithCapacity(int capacity)
Returns a mutable clone of this list with the specified capacity.
|
java.lang.String |
remove(int index) |
void |
set(int index,
byte[] s)
Replaces the element at the specified position in this list with the
specified element (optional operation).
|
void |
set(int index,
ByteString s)
Replaces the element at the specified position in this list with the
specified element (optional operation).
|
java.lang.String |
set(int index,
java.lang.String s) |
private java.lang.Object |
setAndReturn(int index,
byte[] s) |
private java.lang.Object |
setAndReturn(int index,
ByteString s) |
int |
size() |
add, ensureIsMutable, equals, hashCode, isModifiable, makeImmutable, remove, removeAll, retainAllindexOf, iterator, lastIndexOf, listIterator, listIterator, removeRange, subListcontains, containsAll, isEmpty, toArray, toArray, toStringclone, finalize, getClass, notify, notifyAll, wait, wait, waitprivate static final LazyStringArrayList EMPTY_LIST
public static final LazyStringList EMPTY
private final java.util.List<java.lang.Object> list
public LazyStringArrayList()
public LazyStringArrayList(int intialCapacity)
public LazyStringArrayList(LazyStringList from)
public LazyStringArrayList(java.util.List<java.lang.String> from)
private LazyStringArrayList(java.util.ArrayList<java.lang.Object> list)
static LazyStringArrayList emptyList()
public LazyStringArrayList mutableCopyWithCapacity(int capacity)
Internal.ProtobufListmutableCopyWithCapacity in interface Internal.ProtobufList<java.lang.String>public java.lang.String get(int index)
get in interface java.util.List<java.lang.String>get in class java.util.AbstractList<java.lang.String>public int size()
size in interface java.util.Collection<java.lang.String>size in interface java.util.List<java.lang.String>size in class java.util.AbstractCollection<java.lang.String>public java.lang.String set(int index,
java.lang.String s)
set in interface java.util.List<java.lang.String>set in class AbstractProtobufList<java.lang.String>public void add(int index,
java.lang.String element)
add in interface java.util.List<java.lang.String>add in class AbstractProtobufList<java.lang.String>private void add(int index,
ByteString element)
private void add(int index,
byte[] element)
public boolean addAll(java.util.Collection<? extends java.lang.String> c)
addAll in interface java.util.Collection<java.lang.String>addAll in interface java.util.List<java.lang.String>addAll in class AbstractProtobufList<java.lang.String>public boolean addAll(int index,
java.util.Collection<? extends java.lang.String> c)
addAll in interface java.util.List<java.lang.String>addAll in class AbstractProtobufList<java.lang.String>public boolean addAllByteString(java.util.Collection<? extends ByteString> values)
LazyStringListaddAllByteString in interface LazyStringListvalues - collection whose elements are to be added to this listpublic boolean addAllByteArray(java.util.Collection<byte[]> c)
LazyStringListaddAllByteArray in interface LazyStringListc - collection whose elements are to be added to this listpublic java.lang.String remove(int index)
remove in interface java.util.List<java.lang.String>remove in class AbstractProtobufList<java.lang.String>public void clear()
clear in interface java.util.Collection<java.lang.String>clear in interface java.util.List<java.lang.String>clear in class AbstractProtobufList<java.lang.String>public void add(ByteString element)
LazyStringListadd in interface LazyStringListelement - element to be appended to this listpublic void add(byte[] element)
LazyStringListadd in interface LazyStringListelement - element to be appended to this listpublic java.lang.Object getRaw(int index)
LazyStringListgetRaw in interface LazyStringListindex - index of the element to returnpublic ByteString getByteString(int index)
LazyStringListgetByteString in interface LazyStringListindex - index of the element to returnpublic byte[] getByteArray(int index)
LazyStringListgetByteArray in interface LazyStringListindex - index of the element to returnpublic void set(int index,
ByteString s)
LazyStringListset in interface LazyStringListindex - index of the element to replaces - the element to be stored at the specified positionprivate java.lang.Object setAndReturn(int index,
ByteString s)
public void set(int index,
byte[] s)
LazyStringListset in interface LazyStringListindex - index of the element to replaces - the element to be stored at the specified positionprivate java.lang.Object setAndReturn(int index,
byte[] s)
private static java.lang.String asString(java.lang.Object o)
private static ByteString asByteString(java.lang.Object o)
private static byte[] asByteArray(java.lang.Object o)
public java.util.List<?> getUnderlyingElements()
LazyStringListString or its equivalent UTF-8 encoded ByteString
or byte[]. It is an error for the caller to modify the returned
List, and attempting to do so will result in an
UnsupportedOperationException.getUnderlyingElements in interface LazyStringListpublic void mergeFrom(LazyStringList other)
LazyStringListList.addAll(Collection) on that underlying byte arrays are
copied instead of reference shared. Immutable API doesn't need to use this
method as byte[] is not used there at all.mergeFrom in interface LazyStringListpublic java.util.List<byte[]> asByteArrayList()
LazyStringListasByteArrayList in interface LazyStringListpublic java.util.List<ByteString> asByteStringList()
ProtocolStringListasByteStringList in interface ProtocolStringListpublic LazyStringList getUnmodifiableView()
LazyStringListgetUnmodifiableView in interface LazyStringList