Package com.google.protobuf
Class UnmodifiableLazyStringList
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractList<java.lang.String>
-
- com.google.protobuf.UnmodifiableLazyStringList
-
- All Implemented Interfaces:
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 UnmodifiableLazyStringList extends java.util.AbstractList<java.lang.String> implements LazyStringList, java.util.RandomAccess
An implementation ofLazyStringListthat wraps anotherLazyStringListsuch that it cannot be modified via the wrapper.
-
-
Constructor Summary
Constructors Constructor Description UnmodifiableLazyStringList(LazyStringList list)
-
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(ByteString element)Appends the specified element to the end of this list (optional operation).booleanaddAllByteArray(java.util.Collection<byte[]> element)Appends all elements in the specified byte[] collection to the end of this list.booleanaddAllByteString(java.util.Collection<? extends ByteString> element)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.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.java.util.Iterator<java.lang.String>iterator()java.util.ListIterator<java.lang.String>listIterator(int index)voidmergeFrom(LazyStringList other)Merges all elements from another LazyStringList into this one.voidset(int index, byte[] element)Replaces the element at the specified position in this list with the specified element (optional operation).voidset(int index, ByteString element)Replaces the element at the specified position in this list with the specified element (optional operation).intsize()-
Methods inherited from class java.util.AbstractList
add, add, addAll, clear, equals, hashCode, indexOf, lastIndexOf, listIterator, remove, removeRange, set, subList
-
Methods inherited from class java.util.AbstractCollection
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
-
-
-
-
Constructor Detail
-
UnmodifiableLazyStringList
public UnmodifiableLazyStringList(LazyStringList list)
-
-
Method Detail
-
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>
-
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
-
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>
-
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
-
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
-
set
public void set(int index, ByteString element)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 replaceelement- the element to be stored at the specified position
-
addAllByteString
public boolean addAllByteString(java.util.Collection<? extends ByteString> element)
Description copied from interface:LazyStringListAppends all elements in the specified ByteString collection to the end of this list.- Specified by:
addAllByteStringin interfaceLazyStringList- Parameters:
element- collection whose elements are to be added to this list- Returns:
- true if this list changed as a result of the call
-
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
-
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
-
set
public void set(int index, byte[] element)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 replaceelement- the element to be stored at the specified position
-
addAllByteArray
public boolean addAllByteArray(java.util.Collection<byte[]> element)
Description copied from interface:LazyStringListAppends all elements in the specified byte[] collection to the end of this list.- Specified by:
addAllByteArrayin interfaceLazyStringList- Parameters:
element- collection whose elements are to be added to this list- Returns:
- true if this list changed as a result of the call
-
listIterator
public java.util.ListIterator<java.lang.String> listIterator(int index)
- Specified by:
listIteratorin interfacejava.util.List<java.lang.String>- Overrides:
listIteratorin classjava.util.AbstractList<java.lang.String>
-
iterator
public java.util.Iterator<java.lang.String> iterator()
- Specified by:
iteratorin interfacejava.util.Collection<java.lang.String>- Specified by:
iteratorin interfacejava.lang.Iterable<java.lang.String>- Specified by:
iteratorin interfacejava.util.List<java.lang.String>- Overrides:
iteratorin classjava.util.AbstractList<java.lang.String>
-
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
-
-