public static class AbstractReferenceBigList.ReferenceSubList<K> extends AbstractReferenceBigList<K> implements java.io.Serializable
AbstractReferenceBigList.ReferenceRandomAccessSubList<K>, AbstractReferenceBigList.ReferenceSubList<K>
Constructor and Description |
---|
ReferenceSubList(ReferenceBigList<K> l,
long from,
long to) |
Modifier and Type | Method and Description |
---|---|
boolean |
add(K k) |
void |
add(long index,
K k)
Inserts the specified element at the specified position in this big list (optional operation).
|
boolean |
addAll(long index,
java.util.Collection<? extends K> c)
Adds all of the elements in the specified collection to this list (optional operation).
|
void |
addElements(long index,
K[][] a,
long offset,
long length)
Add (hopefully quickly) elements to this type-specific big list.
|
K |
get(long index)
Returns the element at the specified position.
|
void |
getElements(long from,
java.lang.Object[][] a,
long offset,
long length)
Copies (hopefully quickly) elements of this type-specific big list into the given big array.
|
ObjectBigListIterator<K> |
listIterator(long index)
Returns a type-specific list iterator on this type-specific big list starting at a given index.
|
K |
remove(long index)
Removes the element at the specified position.
|
void |
removeElements(long from,
long to)
Removes (hopefully quickly) elements of this type-specific big list.
|
K |
set(long index,
K k)
Replaces the element at the specified position in this big list with the specified element (optional operation).
|
long |
size64()
Returns the size of this data structure as a long.
|
ObjectSpliterator<K> |
spliterator()
Returns a type-specific spliterator on the elements of this big-list.
|
ReferenceBigList<K> |
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. |
addAll, addElements, clear, contains, equals, forEach, hashCode, indexOf, iterator, lastIndexOf, listIterator, peek, pop, push, setElements, size, size, top, toString
containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray
addAll, addAll, addAll, addAll, setElements, setElements
public ReferenceSubList(ReferenceBigList<K> l, long from, long to)
public boolean add(K k)
AbstractReferenceBigList
add
in interface java.util.Collection<K>
add
in class AbstractReferenceBigList<K>
public void add(long index, K k)
AbstractReferenceBigList
public boolean addAll(long index, java.util.Collection<? extends K> c)
AbstractReferenceBigList
addAll
in interface BigList<K>
addAll
in class AbstractReferenceBigList<K>
index
- 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 K get(long index)
BigList
public K remove(long index)
AbstractReferenceBigList
public K set(long index, K k)
AbstractReferenceBigList
public long size64()
Size64
public void getElements(long from, java.lang.Object[][] a, long offset, long length)
AbstractReferenceBigList
This is a trivial iterator-based implementation. It is expected that implementations will override this method with a more optimized version.
getElements
in interface ReferenceBigList<K>
getElements
in class AbstractReferenceBigList<K>
from
- 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)
AbstractReferenceBigList
This is a trivial iterator-based implementation. It is expected that implementations will override this method with a more optimized version.
removeElements
in interface ReferenceBigList<K>
removeElements
in class AbstractReferenceBigList<K>
from
- the start index (inclusive).to
- the end index (exclusive).public void addElements(long index, K[][] a, long offset, long length)
AbstractReferenceBigList
This is a trivial iterator-based implementation. It is expected that implementations will override this method with a more optimized version.
addElements
in interface ReferenceBigList<K>
addElements
in class AbstractReferenceBigList<K>
index
- 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 ObjectBigListIterator<K> listIterator(long index)
AbstractReferenceBigList
listIterator
in interface BigList<K>
listIterator
in interface ReferenceBigList<K>
listIterator
in class AbstractReferenceBigList<K>
index
- index of first element to be returned from the big-list iterator.BigList.listIterator(long)
public ObjectSpliterator<K> spliterator()
ReferenceBigList
BigList spliterators must report at least Spliterator.SIZED
and Spliterator.ORDERED
.
See List.spliterator()
for more documentation on the requirements
of the returned spliterator (despite BigList
not being a List
, most of the
same requirements apply.
spliterator
in interface ObjectIterable<K>
spliterator
in interface ReferenceBigList<K>
spliterator
in interface ReferenceCollection<K>
spliterator
in interface java.lang.Iterable<K>
spliterator
in interface java.util.Collection<K>
public ReferenceBigList<K> subList(long from, long to)
ReferenceBigList
from
, inclusive, to the index to
, exclusive.subList
in interface BigList<K>
subList
in interface ReferenceBigList<K>
subList
in class AbstractReferenceBigList<K>
from
- the starting element (inclusive).to
- the ending element (exclusive).BigList.subList(long,long)