public static class BooleanBigLists.Singleton extends AbstractBooleanBigList implements Serializable, Cloneable
This class may be useful to implement your own in case you subclass a type-specific big list.
AbstractBooleanBigList.BooleanSubList| Modifier and Type | Method and Description |
|---|---|
boolean |
addAll(BooleanBigList c)
Appends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).
|
boolean |
addAll(BooleanCollection c)
Adds all elements of the given type-specific collection to this collection.
|
boolean |
addAll(Collection<? extends Boolean> c)
This implementation delegates to the type-specific version of
BigList.addAll(long, Collection). |
boolean |
addAll(long i,
BooleanBigList c)
Inserts all of the elements in the specified type-specific big list into this type-specific big list at the specified position (optional operation).
|
boolean |
addAll(long i,
BooleanCollection c)
Inserts all of the elements in the specified type-specific collection into this type-specific big list at the specified position (optional operation).
|
boolean |
addAll(long i,
Collection<? extends Boolean> c)
Adds all of the elements in the specified collection to this list (optional operation).
|
void |
clear()
This implementation delegates to
AbstractBooleanBigList.removeElements(long, long). |
Object |
clone() |
boolean |
contains(boolean k)
Returns true if this list contains the specified element.
|
boolean |
getBoolean(long i)
Returns the element at the specified position.
|
BooleanBigListIterator |
listIterator()
Returns a type-specific big-list iterator on this type-specific big list.
|
BooleanBigListIterator |
listIterator(long i)
Returns a type-specific list iterator on this type-specific big list starting at a given index.
|
boolean |
rem(boolean k)
Removes a single instance of the specified element from this collection, if it is present (optional operation).
|
boolean |
removeAll(BooleanCollection c)
Remove from this collection all elements in the given type-specific collection.
|
boolean |
removeAll(Collection<?> c) |
boolean |
removeBoolean(long i)
Removes the element at the specified position.
|
boolean |
retainAll(BooleanCollection c)
Retains in this collection only elements from the given type-specific collection.
|
boolean |
retainAll(Collection<?> c) |
long |
size64()
Returns the size of this data structure as a long.
|
BooleanBigList |
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. |
boolean[] |
toBooleanArray()
Returns a primitive type array containing the items of this collection.
|
add, add, add, addElements, addElements, compareTo, equals, get, getElements, hashCode, indexOf, indexOf, iterator, lastIndexOf, lastIndexOf, peek, peekBoolean, pop, popBoolean, push, push, remove, removeElements, set, set, size, size, top, topBoolean, toStringadd, contains, containsAll, remove, toArray, toBooleanArraycontainsAll, isEmpty, toArray, toArrayadd, contains, containsAll, remove, toArray, toBooleanArraycontainsAll, isEmpty, parallelStream, removeIf, spliterator, stream, toArray, toArrayforEach, forEachpublic boolean getBoolean(long i)
BooleanBigListgetBoolean in interface BooleanBigListBigList.get(long)public boolean rem(boolean k)
AbstractBooleanBigListThis implementation delegates to indexOf().
rem in interface BooleanCollectionrem in class AbstractBooleanBigListCollection.remove(Object)public boolean removeBoolean(long i)
AbstractBooleanBigListThis implementation always throws an UnsupportedOperationException.
removeBoolean in interface BooleanBigListremoveBoolean in class AbstractBooleanBigListBigList.remove(long)public boolean contains(boolean k)
AbstractBooleanBigListThis implementation delegates to indexOf().
contains in interface BooleanCollectioncontains in class AbstractBooleanBigListCollection.contains(Object)public boolean[] toBooleanArray()
BooleanCollectiontoBooleanArray in interface BooleanCollectiontoBooleanArray in class AbstractBooleanCollectionCollection.toArray()public BooleanBigListIterator listIterator()
AbstractBooleanBigListNote that this specification strengthens the one given in BigList.listIterator().
This implementation delegates to listIterator(0).
listIterator in interface BigList<Boolean>listIterator in interface BooleanBigListlistIterator in class AbstractBooleanBigListBigList.listIterator()public BooleanBigListIterator listIterator(long i)
AbstractBooleanBigListNote that this specification strengthens the one given in BigList.listIterator(long).
This implementation is based on the random-access methods.
listIterator in interface BigList<Boolean>listIterator in interface BooleanBigListlistIterator in class AbstractBooleanBigListi - index of first element to be returned from the big-list iterator.BigList.listIterator(long)public BooleanBigList subList(long from, long to)
BooleanBigListfrom, inclusive, to the index to, exclusive.
Note that this specification strengthens the one given in BigList.subList(long,long).
subList in interface BigList<Boolean>subList in interface BooleanBigListsubList in class AbstractBooleanBigListfrom - the starting element (inclusive).to - the ending element (exclusive).BigList.subList(long,long)public boolean addAll(long i,
Collection<? extends Boolean> c)
AbstractBooleanBigListaddAll in interface BigList<Boolean>addAll in class AbstractBooleanBigListi - 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 boolean addAll(Collection<? extends Boolean> c)
AbstractBooleanBigListThis implementation delegates to the type-specific version of BigList.addAll(long, Collection).
addAll in interface Collection<Boolean>addAll in class AbstractBooleanBigListpublic boolean removeAll(Collection<?> c)
removeAll in interface Collection<Boolean>removeAll in class AbstractCollection<Boolean>public boolean retainAll(Collection<?> c)
retainAll in interface Collection<Boolean>retainAll in class AbstractCollection<Boolean>public boolean addAll(BooleanBigList c)
AbstractBooleanBigListThis implementation delegates to the type-specific list version of AbstractBooleanBigList.addAll(long, Collection).
addAll in interface BooleanBigListaddAll in class AbstractBooleanBigListList.addAll(int,java.util.Collection)public boolean addAll(long i,
BooleanBigList c)
AbstractBooleanBigListThis implementation delegates to the type-specific version of AbstractBooleanBigList.addAll(long, Collection).
addAll in interface BooleanBigListaddAll in class AbstractBooleanBigListList.addAll(int,java.util.Collection)public boolean addAll(long i,
BooleanCollection c)
AbstractBooleanBigListThis implementation delegates to the type-specific version of AbstractBooleanBigList.addAll(long, Collection).
addAll in interface BooleanBigListaddAll in class AbstractBooleanBigListList.addAll(int,java.util.Collection)public boolean addAll(BooleanCollection c)
AbstractBooleanBigListThis implementation delegates to the type-specific version of AbstractBooleanBigList.addAll(long, Collection).
addAll in interface BooleanCollectionaddAll in class AbstractBooleanBigListc - a type-specific collection.true if this collection changed as a result of the call.Collection.addAll(Collection)public boolean removeAll(BooleanCollection c)
BooleanCollectionremoveAll in interface BooleanCollectionremoveAll in class AbstractBooleanCollectionc - a type-specific collection.true if this collection changed as a result of the call.Collection.removeAll(Collection)public boolean retainAll(BooleanCollection c)
BooleanCollectionretainAll in interface BooleanCollectionretainAll in class AbstractBooleanCollectionc - a type-specific collection.true if this collection changed as a result of the call.Collection.retainAll(Collection)public void clear()
AbstractBooleanBigListThis implementation delegates to AbstractBooleanBigList.removeElements(long, long).
clear in interface Collection<Boolean>clear in class AbstractBooleanBigListpublic long size64()
Size64