Package it.unimi.dsi.fastutil.chars
Class CharBigLists.Singleton
java.lang.Object
java.util.AbstractCollection<Character>
it.unimi.dsi.fastutil.chars.AbstractCharCollection
it.unimi.dsi.fastutil.chars.AbstractCharBigList
it.unimi.dsi.fastutil.chars.CharBigLists.Singleton
- All Implemented Interfaces:
BigList<Character>,CharBigList,CharCollection,CharIterable,CharStack,Size64,Stack<Character>,Serializable,Cloneable,Comparable<BigList<? extends Character>>,Iterable<Character>,Collection<Character>
- Enclosing class:
- CharBigLists
public static class CharBigLists.Singleton
extends AbstractCharBigList
implements Serializable, 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:
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.chars.AbstractCharBigList
AbstractCharBigList.CharRandomAccessSubList, AbstractCharBigList.CharSubList -
Method Summary
Modifier and TypeMethodDescriptionbooleanaddAll(long i, CharBigList 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).booleanaddAll(long i, CharCollection c) Inserts all of the elements in the specified type-specific collection into this type-specific big list at the specified position (optional operation).booleanaddAll(long i, Collection<? extends Character> c) Adds all of the elements in the specified collection to this list (optional operation).booleanAppends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).booleanAdds all elements of the given type-specific collection to this collection.booleanaddAll(Collection<? extends Character> c) voidclear()clone()booleancontains(char k) Returns true if this list contains the specified element.chargetChar(long i) Returns the element at the specified position.longindexOf(char 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.Returns a type-specific big-list iterator on this type-specific big list.listIterator(long i) Returns a type-specific list iterator on this type-specific big list starting at a given index.booleanrem(char k) Removes a single instance of the specified element from this collection, if it is present (optional operation).booleanRemove from this collection all elements in the given type-specific collection.booleanremoveAll(Collection<?> c) charremoveChar(long i) Removes the element at the specified position.booleanRetains in this collection only elements from the given type-specific collection.booleanretainAll(Collection<?> c) longsize64()Returns the size of this data structure as a long.Returns a type-specific spliterator on the elements of this big-list.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.char[]Returns a primitive type array containing the items of this collection.Methods inherited from class it.unimi.dsi.fastutil.chars.AbstractCharBigList
add, add, add, addElements, addElements, compareTo, equals, forEach, get, getElements, hashCode, indexOf, intSpliterator, iterator, lastIndexOf, lastIndexOf, peek, peekChar, pop, popChar, push, push, remove, removeElements, set, set, setElements, size, size, top, topChar, toStringMethods inherited from class it.unimi.dsi.fastutil.chars.AbstractCharCollection
add, contains, containsAll, containsAll, remove, toArray, toCharArrayMethods inherited from class java.util.AbstractCollection
isEmpty, toArray, toArrayMethods inherited from interface it.unimi.dsi.fastutil.chars.CharBigList
addAll, addAll, getElements, setElements, setElementsMethods inherited from interface it.unimi.dsi.fastutil.chars.CharCollection
add, contains, containsAll, intIterator, intParallelStream, intStream, parallelStream, remove, removeIf, removeIf, removeIf, stream, toArray, toCharArrayMethods inherited from interface it.unimi.dsi.fastutil.chars.CharIterable
forEach, forEachMethods inherited from interface java.util.Collection
containsAll, isEmpty, toArray, toArray, toArray
-
Method Details
-
getChar
public char getChar(long i) Description copied from interface:CharBigListReturns the element at the specified position.- Specified by:
getCharin interfaceCharBigList- See Also:
-
rem
public boolean rem(char k) Description copied from class:AbstractCharBigListRemoves a single instance of the specified element from this collection, if it is present (optional operation).- Specified by:
remin interfaceCharCollection- Overrides:
remin classAbstractCharBigList- See Also:
-
removeChar
public char removeChar(long i) Description copied from class:AbstractCharBigListRemoves the element at the specified position.- Specified by:
removeCharin interfaceCharBigList- Overrides:
removeCharin classAbstractCharBigList- See Also:
-
contains
public boolean contains(char k) Description copied from class:AbstractCharBigListReturns true if this list contains the specified element.- Specified by:
containsin interfaceCharCollection- Overrides:
containsin classAbstractCharBigList- See Also:
-
indexOf
public long indexOf(char k) Description copied from interface:CharBigListReturns 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:
indexOfin interfaceCharBigList- Overrides:
indexOfin classAbstractCharBigList- See Also:
-
toCharArray
public char[] toCharArray()Description copied from interface:CharCollectionReturns a primitive type array containing the items of this collection.- Specified by:
toCharArrayin interfaceCharCollection- Overrides:
toCharArrayin classAbstractCharCollection- Returns:
- a primitive type array containing the items of this collection.
- See Also:
-
listIterator
Description copied from class:AbstractCharBigListReturns a type-specific big-list iterator on this type-specific big list.- Specified by:
listIteratorin interfaceBigList<Character>- Specified by:
listIteratorin interfaceCharBigList- Overrides:
listIteratorin classAbstractCharBigList- Returns:
- a big-list iterator over the elements in this big list.
- See Also:
-
listIterator
Description copied from class:AbstractCharBigListReturns a type-specific list iterator on this type-specific big list starting at a given index.- Specified by:
listIteratorin interfaceBigList<Character>- Specified by:
listIteratorin interfaceCharBigList- Overrides:
listIteratorin classAbstractCharBigList- 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:
-
spliterator
Description copied from interface:CharBigListReturns a type-specific spliterator on the elements of this big-list.BigList spliterators must report at least
Spliterator.SIZEDandSpliterator.ORDERED.See
List.spliterator()for more documentation on the requirements of the returned spliterator (despiteBigListnot being aList, most of the same requirements apply.- Specified by:
spliteratorin interfaceCharBigList- Specified by:
spliteratorin interfaceCharCollection- Specified by:
spliteratorin interfaceCharIterable- Specified by:
spliteratorin interfaceCollection<Character>- Specified by:
spliteratorin interfaceIterable<Character>- Returns:
- a type-specific spliterator on the elements of this collection.
-
subList
Description copied from interface:CharBigListReturns a type-specific view of the portion of this type-specific big list from the indexfrom, inclusive, to the indexto, exclusive.- Specified by:
subListin interfaceBigList<Character>- Specified by:
subListin interfaceCharBigList- Overrides:
subListin classAbstractCharBigList- Parameters:
from- the starting element (inclusive).to- the ending element (exclusive).- Returns:
- a big sublist view of this big list.
- See Also:
-
addAll
Description copied from class:AbstractCharBigListAdds all of the elements in the specified collection to this list (optional operation).- Specified by:
addAllin interfaceBigList<Character>- Overrides:
addAllin classAbstractCharBigList- 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:
trueif this big list changed as a result of the call- See Also:
-
addAll
Description copied from class:AbstractCharBigList- Specified by:
addAllin interfaceCollection<Character>- Overrides:
addAllin classAbstractCharBigList
-
removeAll
Description copied from class:AbstractCharCollection- Specified by:
removeAllin interfaceCollection<Character>- Overrides:
removeAllin classAbstractCharCollection
-
retainAll
Description copied from class:AbstractCharCollection- Specified by:
retainAllin interfaceCollection<Character>- Overrides:
retainAllin classAbstractCharCollection
-
addAll
Description copied from interface:CharBigListAppends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).- Specified by:
addAllin interfaceCharBigList- See Also:
-
addAll
Description copied from interface:CharBigListInserts 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:
addAllin interfaceCharBigList- See Also:
-
addAll
Description copied from class:AbstractCharBigListInserts all of the elements in the specified type-specific collection into this type-specific big list at the specified position (optional operation).- Specified by:
addAllin interfaceCharBigList- Overrides:
addAllin classAbstractCharBigList- See Also:
-
addAll
Description copied from class:AbstractCharBigListAdds all elements of the given type-specific collection to this collection.- Specified by:
addAllin interfaceCharCollection- Overrides:
addAllin classAbstractCharBigList- Parameters:
c- a type-specific collection.- Returns:
trueif this collection changed as a result of the call.- See Also:
-
removeAll
Description copied from interface:CharCollectionRemove from this collection all elements in the given type-specific collection.- Specified by:
removeAllin interfaceCharCollection- Overrides:
removeAllin classAbstractCharCollection- Parameters:
c- a type-specific collection.- Returns:
trueif this collection changed as a result of the call.- See Also:
-
retainAll
Description copied from interface:CharCollectionRetains in this collection only elements from the given type-specific collection.- Specified by:
retainAllin interfaceCharCollection- Overrides:
retainAllin classAbstractCharCollection- Parameters:
c- a type-specific collection.- Returns:
trueif this collection changed as a result of the call.- See Also:
-
clear
public void clear()Description copied from class:AbstractCharBigList- Specified by:
clearin interfaceCollection<Character>- Overrides:
clearin classAbstractCharBigList
-
size64
public long size64()Description copied from interface:Size64Returns the size of this data structure as a long. -
clone
-