it.unimi.dsi.fastutil.objects
Class ReferenceBigLists.Singleton<K>

java.lang.Object
  extended by java.util.AbstractCollection<K>
      extended by it.unimi.dsi.fastutil.objects.AbstractReferenceCollection<K>
          extended by it.unimi.dsi.fastutil.objects.AbstractReferenceBigList<K>
              extended by it.unimi.dsi.fastutil.objects.ReferenceBigLists.Singleton<K>
All Implemented Interfaces:
BigList<K>, ObjectIterable<K>, ReferenceBigList<K>, ReferenceCollection<K>, Size64, Stack<K>, Serializable, Cloneable, Iterable<K>, Collection<K>
Enclosing class:
ReferenceBigLists

public static class ReferenceBigLists.Singleton<K>
extends AbstractReferenceBigList<K>
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.objects.AbstractReferenceBigList
AbstractReferenceBigList.ReferenceSubList<K>
 
Field Summary
static long serialVersionUID
           
 
Method Summary
 boolean addAll(Collection<? extends K> c)
          Delegates to a more generic method.
 boolean addAll(long i, Collection<? extends K> 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(Object k)
           
 K get(long i)
          Returns the element at the specified position.
 ObjectBigListIterator<K> iterator()
          Returns a type-specific iterator on the elements of this collection.
 ObjectBigListIterator<K> listIterator()
          Returns a type-specific big-list iterator on this type-specific big list.
 ObjectBigListIterator<K> listIterator(long i)
          Returns a type-specific list iterator on this type-specific big list starting at a given index.
 K remove(long i)
          Removes the element at the specified position.
 boolean remove(Object k)
           
 boolean removeAll(Collection<?> c)
          Remove from this collection all elements in the given collection.
 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.
 ReferenceBigList<K> 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.
 Object[] toArray()
           
 
Methods inherited from class it.unimi.dsi.fastutil.objects.AbstractReferenceBigList
add, add, addAll, addElements, addElements, ensureIndex, ensureRestrictedIndex, equals, get, getElements, hashCode, indexOf, lastIndexOf, listIterator, peek, pop, push, remove, removeElements, set, set, size, top, toString
 
Methods inherited from class it.unimi.dsi.fastutil.objects.AbstractReferenceCollection
containsAll, isEmpty, objectIterator, toArray
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface it.unimi.dsi.fastutil.objects.ReferenceCollection
objectIterator, toArray
 
Methods inherited from interface java.util.Collection
containsAll, isEmpty
 
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

get

public K get(long i)
Description copied from interface: BigList
Returns the element at the specified position.

Specified by:
get in interface BigList<K>
Parameters:
i - a position in the big list.
Returns:
the element at the specified position.
See Also:
List.get(int)

remove

public K remove(long i)
Description copied from interface: BigList
Removes the element at the specified position.

Specified by:
remove in interface BigList<K>
Overrides:
remove in class AbstractReferenceBigList<K>
Parameters:
i - a position in the big list.
Returns:
the element previously at the specified position.
See Also:
List.remove(int)

contains

public boolean contains(Object k)
Specified by:
contains in interface Collection<K>
Overrides:
contains in class AbstractReferenceBigList<K>

addAll

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

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

addAll

public boolean addAll(long i,
                      Collection<? extends K> 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<K>
Overrides:
addAll in class AbstractReferenceBigList<K>
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: AbstractReferenceCollection
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<K>
Overrides:
removeAll in class AbstractReferenceCollection<K>
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: AbstractReferenceCollection
Retains in this collection only elements from the given collection.

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

toArray

public Object[] toArray()
Specified by:
toArray in interface Collection<K>
Overrides:
toArray in class AbstractReferenceCollection<K>

listIterator

public ObjectBigListIterator<K> listIterator()
Description copied from interface: ReferenceBigList
Returns a type-specific big-list iterator on this type-specific big list.

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

iterator

public ObjectBigListIterator<K> iterator()
Description copied from interface: ReferenceCollection
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 ObjectIterable<K>
Specified by:
iterator in interface ReferenceBigList<K>
Specified by:
iterator in interface ReferenceCollection<K>
Specified by:
iterator in interface Iterable<K>
Specified by:
iterator in interface Collection<K>
Overrides:
iterator in class AbstractReferenceBigList<K>
Returns:
a type-specific iterator on the elements of this collection.
See Also:
List.iterator()

listIterator

public ObjectBigListIterator<K> listIterator(long i)
Description copied from interface: ReferenceBigList
Returns a type-specific list iterator on this type-specific big list starting at a given index.

Specified by:
listIterator in interface BigList<K>
Specified by:
listIterator in interface ReferenceBigList<K>
Overrides:
listIterator in class AbstractReferenceBigList<K>
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 ReferenceBigList<K> subList(long from,
                                   long to)
Description copied from interface: ReferenceBigList
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<K>
Specified by:
subList in interface ReferenceBigList<K>
Overrides:
subList in class AbstractReferenceBigList<K>
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<K>
Overrides:
size in class AbstractReferenceBigList<K>
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<K>
Overrides:
size in class AbstractReferenceBigList<K>
Parameters:
size - the new size.

clear

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

clone

public Object clone()
Overrides:
clone in class Object

remove

public boolean remove(Object k)
Specified by:
remove in interface Collection<K>
Overrides:
remove in class AbstractCollection<K>


Copyright © 2011. All Rights Reserved.