Class LazyStringArrayList
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractList<E>
-
- com.google.protobuf.LazyStringArrayList
-
- All Implemented Interfaces:
Internal.ProtobufList<java.lang.String>,LazyStringList,ProtocolStringList,java.lang.Iterable<java.lang.String>,java.util.Collection<java.lang.String>,java.util.List<java.lang.String>,java.util.RandomAccess
public class LazyStringArrayList extends java.util.AbstractList<E> implements LazyStringList, java.util.RandomAccess
An implementation ofLazyStringListthat 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.
-
-
Field Summary
Fields Modifier and Type Field Description protected static intDEFAULT_CAPACITYstatic LazyStringListEMPTY
-
Constructor Summary
Constructors Constructor Description LazyStringArrayList()LazyStringArrayList(int initialCapacity)LazyStringArrayList(LazyStringList from)LazyStringArrayList(java.util.List<java.lang.String> from)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(byte[] element)Appends the specified element to the end of this list (optional operation).voidadd(int index, java.lang.String element)voidadd(ByteString element)Appends the specified element to the end of this list (optional operation).booleanadd(E e)booleanaddAll(int index, java.util.Collection<? extends java.lang.String> c)booleanaddAll(java.util.Collection<? extends java.lang.String> c)booleanaddAllByteArray(java.util.Collection<byte[]> c)Appends all elements in the specified byte[] collection to the end of this list.booleanaddAllByteString(java.util.Collection<? extends ByteString> values)Appends all elements in the specified ByteString collection to the end of this list.java.util.List<byte[]>asByteArrayList()Returns a mutable view of this list.java.util.List<ByteString>asByteStringList()Returns a view of the data as a list of ByteStrings.voidclear()protected voidensureIsMutable()Throws anUnsupportedOperationExceptionif the list is immutable.booleanequals(java.lang.Object o)java.lang.Stringget(int index)byte[]getByteArray(int index)Returns the element at the specified position in this list as byte[].ByteStringgetByteString(int index)Returns the element at the specified position in this list as a ByteString.java.lang.ObjectgetRaw(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 aStringor its equivalent UTF-8 encodedByteStringor byte[].LazyStringListgetUnmodifiableView()Returns an unmodifiable view of the list.inthashCode()booleanisModifiable()Returns whether this list can be modified via the publicly accessibleListmethods.voidmakeImmutable()Makes this list immutable.voidmergeFrom(LazyStringList other)Merges all elements from another LazyStringList into this one.LazyStringArrayListmutableCopyWithCapacity(int capacity)Returns a mutable clone of this list with the specified capacity.java.lang.Stringremove(int index)booleanremove(java.lang.Object o)booleanremoveAll(java.util.Collection<?> c)booleanretainAll(java.util.Collection<?> c)voidset(int index, byte[] s)Replaces the element at the specified position in this list with the specified element (optional operation).voidset(int index, ByteString s)Replaces the element at the specified position in this list with the specified element (optional operation).java.lang.Stringset(int index, java.lang.String s)intsize()-
Methods inherited from class java.util.AbstractList
indexOf, iterator, lastIndexOf, listIterator, listIterator, removeRange, subList
-
Methods inherited from class java.util.AbstractCollection
contains, containsAll, isEmpty, toArray, toArray, toString
-
-
-
-
Field Detail
-
EMPTY
public static final LazyStringList EMPTY
-
DEFAULT_CAPACITY
protected static final int DEFAULT_CAPACITY
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
LazyStringArrayList
public LazyStringArrayList()
-
LazyStringArrayList
public LazyStringArrayList(int initialCapacity)
-
LazyStringArrayList
public LazyStringArrayList(LazyStringList from)
-
LazyStringArrayList
public LazyStringArrayList(java.util.List<java.lang.String> from)
-
-
Method Detail
-
mutableCopyWithCapacity
public LazyStringArrayList mutableCopyWithCapacity(int capacity)
Description copied from interface:Internal.ProtobufListReturns a mutable clone of this list with the specified capacity.- Specified by:
mutableCopyWithCapacityin interfaceInternal.ProtobufList<java.lang.String>
-
get
public java.lang.String get(int index)
- Specified by:
getin interfacejava.util.List<java.lang.String>- Specified by:
getin classjava.util.AbstractList<java.lang.String>
-
size
public int size()
- Specified by:
sizein interfacejava.util.Collection<java.lang.String>- Specified by:
sizein interfacejava.util.List<java.lang.String>- Specified by:
sizein classjava.util.AbstractCollection<java.lang.String>
-
set
public java.lang.String set(int index, java.lang.String s)- Specified by:
setin interfacejava.util.List<java.lang.String>
-
add
public void add(int index, java.lang.String element)- Specified by:
addin interfacejava.util.List<java.lang.String>
-
addAll
public boolean addAll(java.util.Collection<? extends java.lang.String> c)
- Specified by:
addAllin interfacejava.util.Collection<java.lang.String>- Specified by:
addAllin interfacejava.util.List<java.lang.String>
-
addAll
public boolean addAll(int index, java.util.Collection<? extends java.lang.String> c)- Specified by:
addAllin interfacejava.util.List<java.lang.String>
-
addAllByteString
public boolean addAllByteString(java.util.Collection<? extends ByteString> values)
Description copied from interface:LazyStringListAppends all elements in the specified ByteString collection to the end of this list.- Specified by:
addAllByteStringin interfaceLazyStringList- Parameters:
values- collection whose elements are to be added to this list- Returns:
- true if this list changed as a result of the call
-
addAllByteArray
public boolean addAllByteArray(java.util.Collection<byte[]> c)
Description copied from interface:LazyStringListAppends all elements in the specified byte[] collection to the end of this list.- Specified by:
addAllByteArrayin interfaceLazyStringList- Parameters:
c- collection whose elements are to be added to this list- Returns:
- true if this list changed as a result of the call
-
remove
public java.lang.String remove(int index)
- Specified by:
removein interfacejava.util.List<java.lang.String>
-
clear
public void clear()
- Specified by:
clearin interfacejava.util.Collection<java.lang.String>- Specified by:
clearin interfacejava.util.List<java.lang.String>
-
add
public void add(ByteString element)
Description copied from interface:LazyStringListAppends the specified element to the end of this list (optional operation).- Specified by:
addin interfaceLazyStringList- Parameters:
element- element to be appended to this list
-
add
public void add(byte[] element)
Description copied from interface:LazyStringListAppends the specified element to the end of this list (optional operation).- Specified by:
addin interfaceLazyStringList- Parameters:
element- element to be appended to this list
-
getRaw
public java.lang.Object getRaw(int index)
Description copied from interface:LazyStringListReturns the element at the specified position in this list as an Object that will either be a String or a ByteString.- Specified by:
getRawin interfaceLazyStringList- Parameters:
index- index of the element to return- Returns:
- the element at the specified position in this list
-
getByteString
public ByteString getByteString(int index)
Description copied from interface:LazyStringListReturns the element at the specified position in this list as a ByteString.- Specified by:
getByteStringin interfaceLazyStringList- Parameters:
index- index of the element to return- Returns:
- the element at the specified position in this list
-
getByteArray
public byte[] getByteArray(int index)
Description copied from interface:LazyStringListReturns the element at the specified position in this list as byte[].- Specified by:
getByteArrayin interfaceLazyStringList- Parameters:
index- index of the element to return- Returns:
- the element at the specified position in this list
-
set
public void set(int index, ByteString s)Description copied from interface:LazyStringListReplaces the element at the specified position in this list with the specified element (optional operation).- Specified by:
setin interfaceLazyStringList- Parameters:
index- index of the element to replaces- the element to be stored at the specified position
-
set
public void set(int index, byte[] s)Description copied from interface:LazyStringListReplaces the element at the specified position in this list with the specified element (optional operation).- Specified by:
setin interfaceLazyStringList- Parameters:
index- index of the element to replaces- the element to be stored at the specified position
-
getUnderlyingElements
public java.util.List<?> getUnderlyingElements()
Description copied from interface:LazyStringListReturns an unmodifiable List of the underlying elements, each of which is either aStringor its equivalent UTF-8 encodedByteStringor byte[]. It is an error for the caller to modify the returned List, and attempting to do so will result in anUnsupportedOperationException.- Specified by:
getUnderlyingElementsin interfaceLazyStringList
-
mergeFrom
public void mergeFrom(LazyStringList other)
Description copied from interface:LazyStringListMerges all elements from another LazyStringList into this one. This method differs fromList.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.- Specified by:
mergeFromin interfaceLazyStringList
-
asByteArrayList
public java.util.List<byte[]> asByteArrayList()
Description copied from interface:LazyStringListReturns a mutable view of this list. Changes to the view will be made into the original list. This method is used in mutable API only.- Specified by:
asByteArrayListin interfaceLazyStringList
-
asByteStringList
public java.util.List<ByteString> asByteStringList()
Description copied from interface:ProtocolStringListReturns a view of the data as a list of ByteStrings.- Specified by:
asByteStringListin interfaceProtocolStringList
-
getUnmodifiableView
public LazyStringList getUnmodifiableView()
Description copied from interface:LazyStringListReturns an unmodifiable view of the list.- Specified by:
getUnmodifiableViewin interfaceLazyStringList
-
equals
public boolean equals(java.lang.Object o)
- Specified by:
equalsin interfacejava.util.Collection<E>- Specified by:
equalsin interfacejava.util.List<E>- Overrides:
equalsin classjava.util.AbstractList<E>
-
hashCode
public int hashCode()
- Specified by:
hashCodein interfacejava.util.Collection<E>- Specified by:
hashCodein interfacejava.util.List<E>- Overrides:
hashCodein classjava.util.AbstractList<E>
-
add
public boolean add(E e)
- Specified by:
addin interfacejava.util.Collection<E>- Specified by:
addin interfacejava.util.List<E>- Overrides:
addin classjava.util.AbstractList<E>
-
isModifiable
public boolean isModifiable()
Description copied from interface:Internal.ProtobufListReturns whether this list can be modified via the publicly accessibleListmethods.- Specified by:
isModifiablein interfaceInternal.ProtobufList<E>
-
makeImmutable
public final void makeImmutable()
Description copied from interface:Internal.ProtobufListMakes this list immutable. All subsequent modifications will throw anUnsupportedOperationException.- Specified by:
makeImmutablein interfaceInternal.ProtobufList<E>
-
remove
public boolean remove(java.lang.Object o)
- Specified by:
removein interfacejava.util.Collection<E>- Specified by:
removein interfacejava.util.List<E>- Overrides:
removein classjava.util.AbstractCollection<E>
-
removeAll
public boolean removeAll(java.util.Collection<?> c)
- Specified by:
removeAllin interfacejava.util.Collection<E>- Specified by:
removeAllin interfacejava.util.List<E>- Overrides:
removeAllin classjava.util.AbstractCollection<E>
-
retainAll
public boolean retainAll(java.util.Collection<?> c)
- Specified by:
retainAllin interfacejava.util.Collection<E>- Specified by:
retainAllin interfacejava.util.List<E>- Overrides:
retainAllin classjava.util.AbstractCollection<E>
-
ensureIsMutable
protected void ensureIsMutable()
Throws anUnsupportedOperationExceptionif the list is immutable. Subclasses are responsible for invoking this method on mutate operations.
-
-