Package com.google.protobuf
Class UnmodifiableLazyStringList
- All Implemented Interfaces:
LazyStringList,ProtocolStringList,Iterable<String>,Collection<String>,List<String>,RandomAccess
public class UnmodifiableLazyStringList
extends AbstractList<String>
implements LazyStringList, RandomAccess
An implementation of
LazyStringList that wraps another
LazyStringList such that it cannot be modified via the wrapper.- Author:
- jonp@google.com (Jon Perlow)
-
Field Summary
Fields inherited from class java.util.AbstractList
modCount -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidadd(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(Collection<byte[]> element) Appends all elements in the specified byte[] collection to the end of this list.booleanaddAllByteString(Collection<? extends ByteString> element) Appends all elements in the specified ByteString collection to the end of this list.List<byte[]>Returns a mutable view of this list.Returns a view of the data as a list of ByteStrings.get(int index) byte[]getByteArray(int index) Returns the element at the specified position in this list as byte[].getByteString(int index) Returns the element at the specified position in this list as a ByteString.List<?>Returns an unmodifiable List of the underlying elements, each of which is either aStringor its equivalent UTF-8 encodedByteStringor byte[].Returns an unmodifiable view of the list.iterator()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, subListMethods inherited from class java.util.AbstractCollection
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toStringMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArrayMethods inherited from interface java.util.List
add, add, addAll, addAll, clear, contains, containsAll, equals, hashCode, indexOf, isEmpty, lastIndexOf, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, sort, spliterator, subList, toArray, toArray
-
Constructor Details
-
UnmodifiableLazyStringList
-
-
Method Details
-
get
-
size
public int size()- Specified by:
sizein interfaceCollection<String>- Specified by:
sizein interfaceList<String>- Specified by:
sizein classAbstractCollection<String>
-
getByteString
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
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
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
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
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
- Specified by:
listIteratorin interfaceList<String>- Overrides:
listIteratorin classAbstractList<String>
-
iterator
-
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
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
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
Description copied from interface:ProtocolStringListReturns a view of the data as a list of ByteStrings.- Specified by:
asByteStringListin interfaceProtocolStringList
-
getUnmodifiableView
Description copied from interface:LazyStringListReturns an unmodifiable view of the list.- Specified by:
getUnmodifiableViewin interfaceLazyStringList
-