Package it.unimi.dsi.fastutil.chars
Class CharBigLists.ListBigList
java.lang.Object
java.util.AbstractCollection<java.lang.Character>
it.unimi.dsi.fastutil.chars.AbstractCharCollection
it.unimi.dsi.fastutil.chars.AbstractCharBigList
it.unimi.dsi.fastutil.chars.CharBigLists.ListBigList
- All Implemented Interfaces:
it.unimi.dsi.fastutil.BigList<java.lang.Character>,CharBigList,CharCollection,it.unimi.dsi.fastutil.chars.CharIterable,CharStack,it.unimi.dsi.fastutil.Size64,it.unimi.dsi.fastutil.Stack<java.lang.Character>,java.io.Serializable,java.lang.Comparable<it.unimi.dsi.fastutil.BigList<? extends java.lang.Character>>,java.lang.Iterable<java.lang.Character>,java.util.Collection<java.lang.Character>
- Enclosing class:
- CharBigLists
public static class CharBigLists.ListBigList extends AbstractCharBigList implements java.io.Serializable
A class exposing a list as a big list.
- See Also:
- Serialized Form
-
Nested Class Summary
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.chars.AbstractCharBigList
AbstractCharBigList.CharRandomAccessSubList, AbstractCharBigList.CharSubList -
Method Summary
Modifier and Type Method Description booleanadd(char key)Ensures that this collection contains the specified element (optional operation).voidadd(long index, char key)Inserts the specified element at the specified position in this type-specific big list (optional operation).booleanaddAll(long index, 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 index, 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 index, java.util.Collection<? extends java.lang.Character> c)Adds all of the elements in the specified collection to this list (optional operation).booleanaddAll(CharBigList c)Appends all of the elements in the specified type-specific big list to the end of this type-specific big list (optional operation).booleanaddAll(CharCollection c)Adds all elements of the given type-specific collection to this collection.booleanaddAll(java.util.Collection<? extends java.lang.Character> c)voidclear()booleancontains(char key)Returns true if this list contains the specified element.booleancontainsAll(CharCollection c)Checks whether this collection contains all elements from the given type-specific collection.booleancontainsAll(java.util.Collection<?> c)chargetChar(long index)Returns the element at the specified position.inthashCode()Returns the hash code for this big list, which is identical toList.hashCode().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.booleanisEmpty()CharBigListIteratoriterator()Returns a type-specific iterator on the elements of this collection.longlastIndexOf(char k)Returns the index of the last occurrence of the specified element in this type-specific big list, or -1 if this big list does not contain the element.CharBigListIteratorlistIterator()Returns a type-specific big-list iterator on this type-specific big list.CharBigListIteratorlistIterator(long index)Returns a type-specific list iterator on this type-specific big list starting at a given index.booleanremoveAll(CharCollection c)Remove from this collection all elements in the given type-specific collection.booleanremoveAll(java.util.Collection<?> c)charremoveChar(long index)Removes the element at the specified position.voidremoveElements(long from, long to)Removes (hopefully quickly) elements of this type-specific big list.booleanretainAll(CharCollection c)Retains in this collection only elements from the given type-specific collection.booleanretainAll(java.util.Collection<?> c)charset(long index, char k)Replaces the element at the specified position in this big list with the specified element (optional operation).voidsize(long size)longsize64()CharBigListsubList(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.<T> T[]toArray(T[] a)char[]toCharArray()Returns a primitive type array containing the items of this collection.char[]toCharArray(char[] a)Deprecated.Methods inherited from class it.unimi.dsi.fastutil.chars.AbstractCharBigList
add, addElements, addElements, compareTo, equals, forEach, get, getElements, indexOf, intSpliterator, lastIndexOf, peek, peekChar, pop, popChar, push, push, rem, remove, set, setElements, size, top, topChar, toStringMethods inherited from class it.unimi.dsi.fastutil.chars.AbstractCharCollection
add, contains, remove, toArrayMethods inherited from class java.util.AbstractCollection
toArrayMethods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface it.unimi.dsi.fastutil.chars.CharBigList
addAll, addAll, setElements, setElements, spliteratorMethods inherited from interface it.unimi.dsi.fastutil.chars.CharCollection
add, contains, intIterator, intParallelStream, intStream, parallelStream, remove, removeIf, removeIf, removeIf, stream, toArrayMethods inherited from interface it.unimi.dsi.fastutil.chars.CharIterable
forEach, forEachMethods inherited from interface java.util.Collection
toArray, toArray
-
Method Details
-
size64
public long size64()- Specified by:
size64in interfaceit.unimi.dsi.fastutil.Size64
-
size
public void size(long size)- Specified by:
sizein interfaceit.unimi.dsi.fastutil.BigList<java.lang.Character>- Overrides:
sizein classAbstractCharBigList
-
iterator
Description copied from class:AbstractCharBigListReturns a type-specific iterator on the elements of this collection.- Specified by:
iteratorin interfaceCharBigList- Specified by:
iteratorin interfaceCharCollection- Specified by:
iteratorin interfaceit.unimi.dsi.fastutil.chars.CharIterable- Specified by:
iteratorin interfacejava.util.Collection<java.lang.Character>- Specified by:
iteratorin interfacejava.lang.Iterable<java.lang.Character>- Overrides:
iteratorin classAbstractCharBigList- Returns:
- a type-specific iterator on the elements of this collection.
- See Also:
Collection.iterator()
-
listIterator
Description copied from class:AbstractCharBigListReturns a type-specific big-list iterator on this type-specific big list.- Specified by:
listIteratorin interfaceit.unimi.dsi.fastutil.BigList<java.lang.Character>- Specified by:
listIteratorin interfaceCharBigList- Overrides:
listIteratorin classAbstractCharBigList- See Also:
BigList.listIterator()
-
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 interfaceit.unimi.dsi.fastutil.BigList<java.lang.Character>- Specified by:
listIteratorin interfaceCharBigList- Overrides:
listIteratorin classAbstractCharBigList- See Also:
BigList.listIterator(long)
-
addAll
public boolean addAll(long index, java.util.Collection<? extends java.lang.Character> c)Description copied from class:AbstractCharBigListAdds all of the elements in the specified collection to this list (optional operation).- Specified by:
addAllin interfaceit.unimi.dsi.fastutil.BigList<java.lang.Character>- Overrides:
addAllin classAbstractCharBigList
-
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 interfaceit.unimi.dsi.fastutil.BigList<java.lang.Character>- Specified by:
subListin interfaceCharBigList- Overrides:
subListin classAbstractCharBigList- See Also:
BigList.subList(long,long)
-
contains
public boolean contains(char key)Description copied from class:AbstractCharBigListReturns true if this list contains the specified element.- Specified by:
containsin interfaceCharCollection- Overrides:
containsin classAbstractCharBigList- See Also:
Collection.contains(Object)
-
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:
Collection.toArray()
-
removeElements
public void removeElements(long from, long to)Description copied from class:AbstractCharBigListRemoves (hopefully quickly) elements of this type-specific big list.This is a trivial iterator-based implementation. It is expected that implementations will override this method with a more optimized version.
- Specified by:
removeElementsin interfaceCharBigList- Overrides:
removeElementsin classAbstractCharBigList- Parameters:
from- the start index (inclusive).to- the end index (exclusive).
-
toCharArray
@Deprecated public char[] toCharArray(char[] a)Deprecated.Description copied from class:AbstractCharCollectionReturns a primitive type array containing the items of this collection.Note that, contrarily to
Collection.toArray(Object[]), this methods just writes all elements of this collection: no special value will be added after the last one.- Specified by:
toCharArrayin interfaceCharCollection- Overrides:
toCharArrayin classAbstractCharCollection- Parameters:
a- if this array is big enough, it will be used to store this collection.- Returns:
- a primitive type array containing the items of this collection.
- See Also:
Collection.toArray(Object[])
-
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:
List.addAll(int,java.util.Collection)
-
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:
Collection.addAll(Collection)
-
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:
BigList.addAll(long,Collection)
-
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:
Collection.addAll(Collection)
-
containsAll
Description copied from interface:CharCollectionChecks whether this collection contains all elements from the given type-specific collection.- Specified by:
containsAllin interfaceCharCollection- Overrides:
containsAllin classAbstractCharCollection- Parameters:
c- a type-specific collection.- Returns:
trueif this collection contains all elements of the argument.- See Also:
Collection.containsAll(Collection)
-
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:
Collection.removeAll(Collection)
-
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:
Collection.retainAll(Collection)
-
add
public void add(long index, char key)Description copied from class:AbstractCharBigListInserts the specified element at the specified position in this type-specific big list (optional operation).- Specified by:
addin interfaceCharBigList- Overrides:
addin classAbstractCharBigList- See Also:
BigList.add(long,Object)
-
add
public boolean add(char key)Description copied from class:AbstractCharBigListEnsures that this collection contains the specified element (optional operation).- Specified by:
addin interfaceCharCollection- Overrides:
addin classAbstractCharBigList- See Also:
Collection.add(Object)
-
getChar
public char getChar(long index)Description copied from interface:CharBigListReturns the element at the specified position.- Specified by:
getCharin interfaceCharBigList- See Also:
BigList.get(long)
-
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:
BigList.indexOf(Object)
-
lastIndexOf
public long lastIndexOf(char k)Description copied from interface:CharBigListReturns the index of the last occurrence of the specified element in this type-specific big list, or -1 if this big list does not contain the element.- Specified by:
lastIndexOfin interfaceCharBigList- Overrides:
lastIndexOfin classAbstractCharBigList- See Also:
BigList.lastIndexOf(Object)
-
removeChar
public char removeChar(long index)Description copied from class:AbstractCharBigListRemoves the element at the specified position.- Specified by:
removeCharin interfaceCharBigList- Overrides:
removeCharin classAbstractCharBigList- See Also:
BigList.remove(long)
-
set
public char set(long index, char k)Description copied from class:AbstractCharBigListReplaces the element at the specified position in this big list with the specified element (optional operation).- Specified by:
setin interfaceCharBigList- Overrides:
setin classAbstractCharBigList- See Also:
BigList.set(long,Object)
-
isEmpty
public boolean isEmpty()- Specified by:
isEmptyin interfacejava.util.Collection<java.lang.Character>- Specified by:
isEmptyin interfaceit.unimi.dsi.fastutil.Stack<java.lang.Character>- Overrides:
isEmptyin classjava.util.AbstractCollection<java.lang.Character>
-
toArray
public <T> T[] toArray(T[] a)- Specified by:
toArrayin interfacejava.util.Collection<java.lang.Character>- Overrides:
toArrayin classjava.util.AbstractCollection<java.lang.Character>
-
containsAll
public boolean containsAll(java.util.Collection<?> c)Description copied from class:AbstractCharCollection- Specified by:
containsAllin interfacejava.util.Collection<java.lang.Character>- Overrides:
containsAllin classAbstractCharCollection
-
addAll
public boolean addAll(java.util.Collection<? extends java.lang.Character> c)Description copied from class:AbstractCharBigList- Specified by:
addAllin interfacejava.util.Collection<java.lang.Character>- Overrides:
addAllin classAbstractCharBigList
-
removeAll
public boolean removeAll(java.util.Collection<?> c)Description copied from class:AbstractCharCollection- Specified by:
removeAllin interfacejava.util.Collection<java.lang.Character>- Overrides:
removeAllin classAbstractCharCollection
-
retainAll
public boolean retainAll(java.util.Collection<?> c)Description copied from class:AbstractCharCollection- Specified by:
retainAllin interfacejava.util.Collection<java.lang.Character>- Overrides:
retainAllin classAbstractCharCollection
-
clear
public void clear()Description copied from class:AbstractCharBigList- Specified by:
clearin interfacejava.util.Collection<java.lang.Character>- Overrides:
clearin classAbstractCharBigList
-
hashCode
public int hashCode()Description copied from class:AbstractCharBigListReturns the hash code for this big list, which is identical toList.hashCode().- Specified by:
hashCodein interfacejava.util.Collection<java.lang.Character>- Overrides:
hashCodein classAbstractCharBigList- Returns:
- the hash code for this big list.
-