it.unimi.dsi.fastutil.chars
Class CharBigLists.Singleton

java.lang.Object
  extended by java.util.AbstractCollection<Character>
      extended by it.unimi.dsi.fastutil.chars.AbstractCharCollection
          extended by it.unimi.dsi.fastutil.chars.AbstractCharBigList
              extended by 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:
Serialized Form

Nested Class Summary
 
Nested classes/interfaces inherited from class it.unimi.dsi.fastutil.chars.AbstractCharBigList
AbstractCharBigList.CharSubList
 
Field Summary
static long serialVersionUID
           
 
Method Summary
 boolean addAll(CharCollection c)
          Adds all elements of the given type-specific collection to this collection.
 boolean addAll(Collection<? extends Character> c)
          Delegates to a more generic method.
 boolean addAll(long i, CharCollection c)
          Delegates to a more generic method.
 boolean addAll(long i, Collection<? extends Character> c)
          Inserts all of the elements in the specified collection into this big list at the specified position (optional operation).
 void clear()
           
 Object clone()
           
 boolean contains(char k)
           
 char getChar(long i)
           
 CharBigListIterator iterator()
          Returns a type-specific iterator on the elements of this collection.
 CharBigListIterator listIterator()
          Returns a type-specific big-list iterator on this type-specific big list.
 CharBigListIterator listIterator(long i)
          Returns a type-specific list iterator on this type-specific big list starting at a given index.
 boolean rem(char k)
          Note that this method should be called remove(), but the clash with the similarly named index-based method in the List interface forces us to use a distinguished name.
 boolean removeAll(Collection<?> c)
          Remove from this collection all elements in the given collection.
 char removeChar(long i)
           
 boolean retainAll(Collection<?> c)
          Retains in this collection only elements from the given collection.
 int size()
          Deprecated. 
 void size(long size)
          Sets the size of this big list.
 long size64()
          Returns the size of this data structure as a long.
 CharBigList 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.
 char[] toCharArray()
          Returns a primitive type array containing the items of this collection.
 
Methods inherited from class it.unimi.dsi.fastutil.chars.AbstractCharBigList
add, add, add, addAll, addAll, addAll, addElements, addElements, compareTo, equals, get, getChar, getElements, hashCode, indexOf, indexOf, lastIndexOf, lastIndexOf, listIterator, peek, peekChar, pop, popChar, push, push, remove, remove, removeChar, removeElements, set, set, set, size, top, topChar, toString
 
Methods inherited from class it.unimi.dsi.fastutil.chars.AbstractCharCollection
add, charIterator, contains, containsAll, containsAll, isEmpty, rem, remove, removeAll, retainAll, toArray, toArray, toArray, toCharArray
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface it.unimi.dsi.fastutil.chars.CharCollection
charIterator, containsAll, removeAll, retainAll, toArray, toArray, toCharArray
 
Methods inherited from interface java.util.Collection
add, contains, containsAll, isEmpty, remove, toArray
 
Methods inherited from interface it.unimi.dsi.fastutil.Stack
isEmpty
 

Field Detail

serialVersionUID

public static final long serialVersionUID
See Also:
Constant Field Values
Method Detail

getChar

public char getChar(long i)
Specified by:
getChar in interface CharBigList
See Also:
BigList.get(long)

removeChar

public char removeChar(long i)
Specified by:
removeChar in interface CharBigList
Overrides:
removeChar in class AbstractCharBigList
See Also:
BigList.remove(long)

contains

public boolean contains(char k)
Specified by:
contains in interface CharCollection
Overrides:
contains in class AbstractCharBigList
See Also:
Collection.contains(Object)

addAll

public boolean addAll(Collection<? extends Character> c)
Description copied from class: AbstractCharBigList
Delegates to a more generic method.

Specified by:
addAll in interface Collection<Character>
Overrides:
addAll in class AbstractCharBigList
Parameters:
c - a collection.
Returns:
true if this collection changed as a result of the call.

addAll

public boolean addAll(long i,
                      Collection<? extends Character> c)
Description copied from interface: BigList
Inserts all of the elements in the specified collection into this big list at the specified position (optional operation).

Specified by:
addAll in interface BigList<Character>
Overrides:
addAll in class AbstractCharBigList
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)

removeAll

public boolean removeAll(Collection<?> c)
Description copied from class: AbstractCharCollection
Remove from this collection all elements in the given collection. If the collection is an instance of this class, it uses faster iterators.

Specified by:
removeAll in interface Collection<Character>
Overrides:
removeAll in class AbstractCharCollection
Parameters:
c - a collection.
Returns:
true if this collection changed as a result of the call.

retainAll

public boolean retainAll(Collection<?> c)
Description copied from class: AbstractCharCollection
Retains in this collection only elements from the given collection.

Specified by:
retainAll in interface Collection<Character>
Overrides:
retainAll in class AbstractCharCollection
Parameters:
c - a collection.
Returns:
true if this collection changed as a result of the call.

toCharArray

public char[] toCharArray()
Description copied from interface: CharCollection
Returns a primitive type array containing the items of this collection.

Specified by:
toCharArray in interface CharCollection
Overrides:
toCharArray in class AbstractCharCollection
Returns:
a primitive type array containing the items of this collection.
See Also:
Collection.toArray()

listIterator

public CharBigListIterator listIterator()
Description copied from interface: CharBigList
Returns a type-specific big-list iterator on this type-specific big list.

Specified by:
listIterator in interface BigList<Character>
Specified by:
listIterator in interface CharBigList
Overrides:
listIterator in class AbstractCharBigList
Returns:
a big-list iterator over the elements in this big list.
See Also:
List.listIterator()

iterator

public CharBigListIterator iterator()
Description copied from interface: CharCollection
Returns a type-specific iterator on the elements of this collection.

Note that this specification strengthens the one given in Iterable.iterator(), which was already strengthened in the corresponding type-specific class, but was weakened by the fact that this interface extends Collection.

Specified by:
iterator in interface CharBigList
Specified by:
iterator in interface CharCollection
Specified by:
iterator in interface CharIterable
Specified by:
iterator in interface Iterable<Character>
Specified by:
iterator in interface Collection<Character>
Overrides:
iterator in class AbstractCharBigList
Returns:
a type-specific iterator on the elements of this collection.
See Also:
List.iterator()

listIterator

public CharBigListIterator listIterator(long i)
Description copied from interface: CharBigList
Returns a type-specific list iterator on this type-specific big list starting at a given index.

Specified by:
listIterator in interface BigList<Character>
Specified by:
listIterator in interface CharBigList
Overrides:
listIterator in class AbstractCharBigList
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)

subList

public CharBigList subList(long from,
                           long to)
Description copied from interface: CharBigList
Returns a type-specific view of the portion of this type-specific big list from the index from, inclusive, to the index to, exclusive.

Note that this specification strengthens the one given in BigList.subList(long,long).

Specified by:
subList in interface BigList<Character>
Specified by:
subList in interface CharBigList
Overrides:
subList in class AbstractCharBigList
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)

size

@Deprecated
public int size()
Deprecated. 

Description copied from interface: Size64
Returns the size of this data structure, minimized with Integer.MAX_VALUE.

Specified by:
size in interface Size64
Specified by:
size in interface Collection<Character>
Overrides:
size in class AbstractCharBigList
Returns:
the size of this data structure, minimized with Integer.MAX_VALUE.
See Also:
Collection.size()

size64

public long size64()
Description copied from interface: Size64
Returns the size of this data structure as a long.

Specified by:
size64 in interface Size64
Returns:
the size of this data structure.

size

public void size(long size)
Description copied from interface: BigList
Sets the size of this big list.

If the specified size is smaller than the current size, the last elements are discarded. Otherwise, they are filled with 0/null/false.

Specified by:
size in interface BigList<Character>
Overrides:
size in class AbstractCharBigList
Parameters:
size - the new size.

clear

public void clear()
Specified by:
clear in interface Collection<Character>
Overrides:
clear in class AbstractCollection<Character>

clone

public Object clone()
Overrides:
clone in class Object

rem

public boolean rem(char k)
Description copied from interface: CharCollection
Note that this method should be called remove(), but the clash with the similarly named index-based method in the List interface forces us to use a distinguished name. For simplicity, the set interfaces reinstates remove().

Specified by:
rem in interface CharCollection
Overrides:
rem in class AbstractCharBigList
See Also:
Collection.remove(Object)

addAll

public boolean addAll(CharCollection c)
Description copied from class: AbstractCharCollection
Adds all elements of the given type-specific collection to this collection.

Specified by:
addAll in interface CharCollection
Overrides:
addAll in class AbstractCharBigList
Parameters:
c - a type-specific collection.
Returns:
true if this collection changed as a result of the call.
See Also:
Collection.addAll(Collection)

addAll

public boolean addAll(long i,
                      CharCollection c)
Description copied from class: AbstractCharBigList
Delegates to a more generic method.

Specified by:
addAll in interface CharBigList
Overrides:
addAll in class AbstractCharBigList
See Also:
List.addAll(int,java.util.Collection)