public static class AbstractByteBigList.ByteSubList extends AbstractByteBigList implements Serializable
AbstractByteBigList.ByteSubList| Constructor and Description |
|---|
AbstractByteBigList.ByteSubList(ByteBigList l,
long from,
long to) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
add(byte k) |
void |
add(long index,
byte k) |
boolean |
addAll(long index,
ByteCollection c)
Delegates to a more generic method.
|
boolean |
addAll(long index,
ByteList l) |
boolean |
addAll(long index,
Collection<? extends Byte> c)
Inserts all of the elements in the specified collection into this big list at the specified position (optional operation).
|
void |
addElements(long index,
byte[][] a,
long offset,
long length)
Adds elements to this type-specific big list one-by-one.
|
void |
clear() |
byte |
getByte(long index) |
void |
getElements(long from,
byte[][] a,
long offset,
long length)
Copies element of this type-specific big list into the given big array one-by-one.
|
ByteBigListIterator |
listIterator(long index)
Returns a type-specific list iterator on this type-specific big list starting at a given index.
|
boolean |
rem(byte k)
|
boolean |
remove(Object o)
Delegates to the type-specific
rem() method. |
byte |
removeByte(long index) |
void |
removeElements(long from,
long to)
Removes elements of this type-specific big list one-by-one.
|
byte |
set(long index,
byte k) |
long |
size64()
Returns the size of this data structure as a long.
|
ByteBigList |
subList(long from,
long to)
Returns a type-specific view of the portion of this type-specific big list from the index
from, inclusive, to the index to, exclusive. |
add, addAll, addAll, addAll, addAll, addAll, addElements, compareTo, contains, equals, get, getByte, hashCode, indexOf, indexOf, iterator, lastIndexOf, lastIndexOf, listIterator, listIterator, peek, peekByte, pop, popByte, push, push, remove, remove, removeByte, set, set, size, size, size, top, topByte, toStringadd, byteIterator, contains, containsAll, containsAll, isEmpty, rem, removeAll, removeAll, retainAll, retainAll, toArray, toArray, toArray, toByteArray, toByteArraybyteIterator, containsAll, removeAll, retainAll, toArray, toArray, toByteArray, toByteArrayadd, contains, containsAll, isEmpty, removeAll, retainAll, toArraypublic AbstractByteBigList.ByteSubList(ByteBigList l, long from, long to)
public boolean add(byte k)
add in interface ByteCollectionadd in class AbstractByteBigListCollection.add(Object)public void add(long index,
byte k)
add in interface ByteBigListadd in class AbstractByteBigListList.add(int,Object)public boolean addAll(long index,
Collection<? extends Byte> c)
BigListaddAll in interface BigList<Byte>addAll in class AbstractByteBigListindex - index at which to insert the first element from the specified collection.c - collection containing elements to be added to this big list.true if this big list changed as a result of the callList.addAll(int, Collection)public byte getByte(long index)
getByte in interface ByteBigListBigList.get(long)public byte removeByte(long index)
removeByte in interface ByteBigListremoveByte in class AbstractByteBigListBigList.remove(long)public byte set(long index,
byte k)
set in interface ByteBigListset in class AbstractByteBigListBigList.set(long,Object)public void clear()
clear in interface Collection<Byte>clear in class AbstractCollection<Byte>public long size64()
Size64public void getElements(long from,
byte[][] a,
long offset,
long length)
AbstractByteBigListThis is a trivial iterator-based implementation. It is expected that implementations will override this method with a more optimized version.
getElements in interface ByteBigListgetElements in class AbstractByteBigListfrom - the start index (inclusive).a - the destination big array.offset - the offset into the destination big array where to store the first element copied.length - the number of elements to be copied.public void removeElements(long from,
long to)
AbstractByteBigListThis is a trivial iterator-based implementation. It is expected that implementations will override this method with a more optimized version.
removeElements in interface ByteBigListremoveElements in class AbstractByteBigListfrom - the start index (inclusive).to - the end index (exclusive).public void addElements(long index,
byte[][] a,
long offset,
long length)
AbstractByteBigListThis is a trivial iterator-based implementation. It is expected that implementations will override this method with a more optimized version.
addElements in interface ByteBigListaddElements in class AbstractByteBigListindex - the index at which to add elements.a - the big array containing the elements.offset - the offset of the first element to add.length - the number of elements to add.public ByteBigListIterator listIterator(long index)
ByteBigListlistIterator in interface BigList<Byte>listIterator in interface ByteBigListlistIterator in class AbstractByteBigListindex - index of first element to be returned from the big-list iterator.BigList.listIterator(long)public ByteBigList subList(long from, long to)
ByteBigListfrom, inclusive, to the index to, exclusive.
Note that this specification strengthens the one given in BigList.subList(long,long).
subList in interface BigList<Byte>subList in interface ByteBigListsubList in class AbstractByteBigListfrom - the starting element (inclusive).to - the ending element (exclusive).BigList.subList(long,long)public boolean rem(byte k)
ByteCollectionremove(), but the clash
with the similarly named index-based method in the List interface
forces us to use a distinguished name. For simplicity, the set interfaces reinstates
remove().rem in interface ByteCollectionrem in class AbstractByteBigListCollection.remove(Object)public boolean remove(Object o)
AbstractByteCollectionrem() method.remove in interface Collection<Byte>remove in class AbstractByteCollectionpublic boolean addAll(long index,
ByteCollection c)
AbstractByteBigListaddAll in interface ByteBigListaddAll in class AbstractByteBigListList.addAll(int,java.util.Collection)public boolean addAll(long index,
ByteList l)