public class LazyStringArrayList extends AbstractList<E> implements LazyStringList, 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 | Field and Description |
|---|---|
protected static int |
DEFAULT_CAPACITY |
static LazyStringList |
EMPTY |
modCount| Constructor and Description |
|---|
LazyStringArrayList() |
LazyStringArrayList(int intialCapacity) |
LazyStringArrayList(LazyStringList from) |
LazyStringArrayList(List<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).
|
boolean |
add(E e) |
void |
add(int index,
String element) |
boolean |
addAll(Collection<? extends String> c) |
boolean |
addAll(int index,
Collection<? extends String> c) |
boolean |
addAllByteArray(Collection<byte[]> c)
Appends all elements in the specified byte[] collection to the end of
this list.
|
boolean |
addAllByteString(Collection<? extends ByteString> values)
Appends all elements in the specified ByteString collection to the end of
this list.
|
List<byte[]> |
asByteArrayList()
Returns a mutable view of this list.
|
List<ByteString> |
asByteStringList()
Returns a view of the data as a list of ByteStrings.
|
void |
clear() |
protected void |
ensureIsMutable()
Throws an
UnsupportedOperationException if the list is immutable. |
boolean |
equals(Object o) |
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.
|
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.
|
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.
|
int |
hashCode() |
boolean |
isModifiable()
Returns whether this list can be modified via the publicly accessible
List methods. |
void |
makeImmutable()
Makes this list immutable.
|
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.
|
String |
remove(int index) |
boolean |
remove(Object o) |
boolean |
removeAll(Collection<?> c) |
boolean |
retainAll(Collection<?> c) |
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).
|
String |
set(int index,
String s) |
int |
size() |
indexOf, iterator, lastIndexOf, listIterator, listIterator, removeRange, subListcontains, containsAll, isEmpty, toArray, toArray, toStringclone, finalize, getClass, notify, notifyAll, wait, wait, waitadd, contains, containsAll, equals, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, removeAll, replaceAll, retainAll, sort, spliterator, subList, toArray, toArrayparallelStream, removeIf, streampublic static final LazyStringList EMPTY
protected static final int DEFAULT_CAPACITY
public LazyStringArrayList()
public LazyStringArrayList(int intialCapacity)
public LazyStringArrayList(LazyStringList from)
public LazyStringArrayList mutableCopyWithCapacity(int capacity)
Internal.ProtobufListmutableCopyWithCapacity in interface Internal.ProtobufList<String>public String get(int index)
public int size()
size in interface Collection<String>size in interface List<String>size in class AbstractCollection<String>public boolean addAll(Collection<? extends String> c)
public boolean addAll(int index,
Collection<? extends String> c)
public boolean addAllByteString(Collection<? extends ByteString> values)
LazyStringListaddAllByteString in interface LazyStringListvalues - collection whose elements are to be added to this listpublic boolean addAllByteArray(Collection<byte[]> c)
LazyStringListaddAllByteArray in interface LazyStringListc - collection whose elements are to be added to this listpublic void clear()
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 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 positionpublic void set(int index,
byte[] s)
LazyStringListset in interface LazyStringListindex - index of the element to replaces - the element to be stored at the specified positionpublic 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 List<byte[]> asByteArrayList()
LazyStringListasByteArrayList in interface LazyStringListpublic List<ByteString> asByteStringList()
ProtocolStringListasByteStringList in interface ProtocolStringListpublic LazyStringList getUnmodifiableView()
LazyStringListgetUnmodifiableView in interface LazyStringListpublic boolean equals(Object o)
equals in interface Collection<E>equals in interface List<E>equals in class AbstractList<E>public int hashCode()
hashCode in interface Collection<E>hashCode in interface List<E>hashCode in class AbstractList<E>public boolean add(E e)
add in interface Collection<E>add in interface List<E>add in class AbstractList<E>public boolean isModifiable()
Internal.ProtobufListList methods.isModifiable in interface Internal.ProtobufList<E>public final void makeImmutable()
Internal.ProtobufListUnsupportedOperationException.makeImmutable in interface Internal.ProtobufList<E>public boolean remove(Object o)
remove in interface Collection<E>remove in interface List<E>remove in class AbstractCollection<E>public boolean removeAll(Collection<?> c)
removeAll in interface Collection<E>removeAll in interface List<E>removeAll in class AbstractCollection<E>public boolean retainAll(Collection<?> c)
retainAll in interface Collection<E>retainAll in interface List<E>retainAll in class AbstractCollection<E>protected void ensureIsMutable()
UnsupportedOperationException if the list is immutable. Subclasses are
responsible for invoking this method on mutate operations.Copyright © 2008–2016 Google. All rights reserved.