Package it.unimi.dsi.fastutil.booleans
Class BooleanBigLists.Singleton
- java.lang.Object
-
- java.util.AbstractCollection<java.lang.Boolean>
-
- it.unimi.dsi.fastutil.booleans.AbstractBooleanCollection
-
- it.unimi.dsi.fastutil.booleans.AbstractBooleanBigList
-
- it.unimi.dsi.fastutil.booleans.BooleanBigLists.Singleton
-
- All Implemented Interfaces:
BigList<java.lang.Boolean>
,BooleanBigList
,BooleanCollection
,BooleanIterable
,BooleanStack
,Size64
,Stack<java.lang.Boolean>
,java.io.Serializable
,java.lang.Cloneable
,java.lang.Comparable<BigList<? extends java.lang.Boolean>>
,java.lang.Iterable<java.lang.Boolean>
,java.util.Collection<java.lang.Boolean>
- Enclosing class:
- BooleanBigLists
public static class BooleanBigLists.Singleton extends AbstractBooleanBigList implements java.io.Serializable, java.lang.Cloneable
An immutable class representing a type-specific singleton big list.This class may be useful to implement your own in case you subclass a type-specific big list.
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.booleans.AbstractBooleanBigList
AbstractBooleanBigList.BooleanRandomAccessSubList, AbstractBooleanBigList.BooleanSubList
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description 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, java.util.Collection<? extends java.lang.Boolean> c)
Adds all of the elements in the specified collection to this list (optional operation).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(java.util.Collection<? extends java.lang.Boolean> c)
void
clear()
java.lang.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.long
indexOf(boolean k)
Returns the index of the first occurrence of the specified element in this type-specific big list, or -1 if this big list does not contain the element.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(java.util.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(java.util.Collection<?> c)
long
size64()
Returns the size of this data structure as a long.BooleanSpliterator
spliterator()
Returns a type-specific spliterator on the elements of this big-list.BooleanBigList
subList(long from, long to)
Returns a type-specific view of the portion of this type-specific big list from the indexfrom
, inclusive, to the indexto
, exclusive.boolean[]
toBooleanArray()
Returns a primitive type array containing the items of this collection.-
Methods inherited from class it.unimi.dsi.fastutil.booleans.AbstractBooleanBigList
add, add, add, addElements, addElements, compareTo, equals, forEach, get, getElements, hashCode, indexOf, iterator, lastIndexOf, lastIndexOf, peek, peekBoolean, pop, popBoolean, push, push, remove, removeElements, set, set, setElements, size, size, top, topBoolean, toString
-
Methods inherited from class it.unimi.dsi.fastutil.booleans.AbstractBooleanCollection
add, contains, containsAll, containsAll, remove, toArray, toBooleanArray
-
Methods inherited from interface it.unimi.dsi.fastutil.booleans.BooleanBigList
addAll, addAll, setElements, setElements
-
Methods inherited from interface it.unimi.dsi.fastutil.booleans.BooleanCollection
add, contains, containsAll, remove, removeIf, removeIf, toArray, toBooleanArray
-
Methods inherited from interface it.unimi.dsi.fastutil.booleans.BooleanIterable
forEach
-
-
-
-
Method Detail
-
getBoolean
public boolean getBoolean(long i)
Description copied from interface:BooleanBigList
Returns the element at the specified position.- Specified by:
getBoolean
in interfaceBooleanBigList
- See Also:
BigList.get(long)
-
rem
public boolean rem(boolean k)
Description copied from class:AbstractBooleanBigList
Removes a single instance of the specified element from this collection, if it is present (optional operation).- Specified by:
rem
in interfaceBooleanCollection
- Overrides:
rem
in classAbstractBooleanBigList
- See Also:
Collection.remove(Object)
-
removeBoolean
public boolean removeBoolean(long i)
Description copied from class:AbstractBooleanBigList
Removes the element at the specified position.- Specified by:
removeBoolean
in interfaceBooleanBigList
- Overrides:
removeBoolean
in classAbstractBooleanBigList
- See Also:
BigList.remove(long)
-
contains
public boolean contains(boolean k)
Description copied from class:AbstractBooleanBigList
Returns true if this list contains the specified element.- Specified by:
contains
in interfaceBooleanCollection
- Overrides:
contains
in classAbstractBooleanBigList
- See Also:
Collection.contains(Object)
-
indexOf
public long indexOf(boolean k)
Description copied from interface:BooleanBigList
Returns the index of the first occurrence of the specified element in this type-specific big list, or -1 if this big list does not contain the element.- Specified by:
indexOf
in interfaceBooleanBigList
- Overrides:
indexOf
in classAbstractBooleanBigList
- See Also:
BigList.indexOf(Object)
-
toBooleanArray
public boolean[] toBooleanArray()
Description copied from interface:BooleanCollection
Returns a primitive type array containing the items of this collection.- Specified by:
toBooleanArray
in interfaceBooleanCollection
- Overrides:
toBooleanArray
in classAbstractBooleanCollection
- Returns:
- a primitive type array containing the items of this collection.
- See Also:
Collection.toArray()
-
listIterator
public BooleanBigListIterator listIterator()
Description copied from class:AbstractBooleanBigList
Returns a type-specific big-list iterator on this type-specific big list.- Specified by:
listIterator
in interfaceBigList<java.lang.Boolean>
- Specified by:
listIterator
in interfaceBooleanBigList
- Overrides:
listIterator
in classAbstractBooleanBigList
- Returns:
- a big-list iterator over the elements in this big list.
- See Also:
BigList.listIterator()
-
listIterator
public BooleanBigListIterator listIterator(long i)
Description copied from class:AbstractBooleanBigList
Returns a type-specific list iterator on this type-specific big list starting at a given index.- Specified by:
listIterator
in interfaceBigList<java.lang.Boolean>
- Specified by:
listIterator
in interfaceBooleanBigList
- Overrides:
listIterator
in classAbstractBooleanBigList
- Parameters:
i
- index of first element to be returned from the big-list iterator.- Returns:
- a big-list iterator of the elements in this big list, starting at the specified position in this big list.
- See Also:
BigList.listIterator(long)
-
spliterator
public BooleanSpliterator spliterator()
Description copied from interface:BooleanBigList
Returns a type-specific spliterator on the elements of this big-list.BigList spliterators must report at least
Spliterator.SIZED
andSpliterator.ORDERED
.See
List.spliterator()
for more documentation on the requirements of the returned spliterator (despiteBigList
not being aList
, most of the same requirements apply.- Specified by:
spliterator
in interfaceBooleanBigList
- Specified by:
spliterator
in interfaceBooleanCollection
- Specified by:
spliterator
in interfaceBooleanIterable
- Specified by:
spliterator
in interfacejava.util.Collection<java.lang.Boolean>
- Specified by:
spliterator
in interfacejava.lang.Iterable<java.lang.Boolean>
- Returns:
- a type-specific spliterator on the elements of this collection.
-
subList
public BooleanBigList subList(long from, long to)
Description copied from interface:BooleanBigList
Returns a type-specific view of the portion of this type-specific big list from the indexfrom
, inclusive, to the indexto
, exclusive.- Specified by:
subList
in interfaceBigList<java.lang.Boolean>
- Specified by:
subList
in interfaceBooleanBigList
- Overrides:
subList
in classAbstractBooleanBigList
- Parameters:
from
- the starting element (inclusive).to
- the ending element (exclusive).- Returns:
- a big sublist view of this big list.
- See Also:
BigList.subList(long,long)
-
addAll
public boolean addAll(long i, java.util.Collection<? extends java.lang.Boolean> c)
Description copied from class:AbstractBooleanBigList
Adds all of the elements in the specified collection to this list (optional operation).- Specified by:
addAll
in interfaceBigList<java.lang.Boolean>
- Overrides:
addAll
in classAbstractBooleanBigList
- Parameters:
i
- index at which to insert the first element from the specified collection.c
- collection containing elements to be added to this big list.- Returns:
true
if this big list changed as a result of the call- See Also:
List.addAll(int, Collection)
-
addAll
public boolean addAll(java.util.Collection<? extends java.lang.Boolean> c)
Description copied from class:AbstractBooleanBigList
- Specified by:
addAll
in interfacejava.util.Collection<java.lang.Boolean>
- Overrides:
addAll
in classAbstractBooleanBigList
-
removeAll
public boolean removeAll(java.util.Collection<?> c)
Description copied from class:AbstractBooleanCollection
- Specified by:
removeAll
in interfacejava.util.Collection<java.lang.Boolean>
- Overrides:
removeAll
in classAbstractBooleanCollection
-
retainAll
public boolean retainAll(java.util.Collection<?> c)
Description copied from class:AbstractBooleanCollection
- Specified by:
retainAll
in interfacejava.util.Collection<java.lang.Boolean>
- Overrides:
retainAll
in classAbstractBooleanCollection
-
addAll
public boolean addAll(BooleanBigList c)
Description copied from interface:BooleanBigList
Appends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).- Specified by:
addAll
in interfaceBooleanBigList
- See Also:
Collection.addAll(Collection)
-
addAll
public boolean addAll(long i, BooleanBigList c)
Description copied from interface:BooleanBigList
Inserts all of the elements in the specified type-specific big list into this type-specific big list at the specified position (optional operation).- Specified by:
addAll
in interfaceBooleanBigList
- See Also:
BigList.addAll(long,Collection)
-
addAll
public boolean addAll(long i, BooleanCollection c)
Description copied from class:AbstractBooleanBigList
Inserts all of the elements in the specified type-specific collection into this type-specific big list at the specified position (optional operation).- Specified by:
addAll
in interfaceBooleanBigList
- Overrides:
addAll
in classAbstractBooleanBigList
- See Also:
List.addAll(int,java.util.Collection)
-
addAll
public boolean addAll(BooleanCollection c)
Description copied from class:AbstractBooleanBigList
Adds all elements of the given type-specific collection to this collection.- Specified by:
addAll
in interfaceBooleanCollection
- Overrides:
addAll
in classAbstractBooleanBigList
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
Collection.addAll(Collection)
-
removeAll
public boolean removeAll(BooleanCollection c)
Description copied from interface:BooleanCollection
Remove from this collection all elements in the given type-specific collection.- Specified by:
removeAll
in interfaceBooleanCollection
- Overrides:
removeAll
in classAbstractBooleanCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
Collection.removeAll(Collection)
-
retainAll
public boolean retainAll(BooleanCollection c)
Description copied from interface:BooleanCollection
Retains in this collection only elements from the given type-specific collection.- Specified by:
retainAll
in interfaceBooleanCollection
- Overrides:
retainAll
in classAbstractBooleanCollection
- Parameters:
c
- a type-specific collection.- Returns:
true
if this collection changed as a result of the call.- See Also:
Collection.retainAll(Collection)
-
clear
public void clear()
Description copied from class:AbstractBooleanBigList
- Specified by:
clear
in interfacejava.util.Collection<java.lang.Boolean>
- Overrides:
clear
in classAbstractBooleanBigList
-
size64
public long size64()
Description copied from interface:Size64
Returns the size of this data structure as a long.
-
clone
public java.lang.Object clone()
-
-