it.unimi.dsi.fastutil.ints
Class IntBigLists.ListBigList

java.lang.Object
  extended by java.util.AbstractCollection<Integer>
      extended by it.unimi.dsi.fastutil.ints.AbstractIntCollection
          extended by it.unimi.dsi.fastutil.ints.AbstractIntBigList
              extended by it.unimi.dsi.fastutil.ints.IntBigLists.ListBigList
All Implemented Interfaces:
BigList<Integer>, IntBigList, IntCollection, IntIterable, IntStack, Size64, Stack<Integer>, Serializable, Comparable<BigList<? extends Integer>>, Iterable<Integer>, Collection<Integer>
Enclosing class:
IntBigLists

public static class IntBigLists.ListBigList
extends AbstractIntBigList
implements 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.ints.AbstractIntBigList
AbstractIntBigList.IntSubList
 
Field Summary
static long serialVersionUID
           
 
Method Summary
 boolean add(int key)
           
 void add(long index, int key)
           
 boolean addAll(Collection<? extends Integer> c)
          Delegates to a more generic method.
 boolean addAll(IntBigList c)
           
 boolean addAll(IntCollection c)
          Adds all elements of the given type-specific collection to this collection.
 boolean addAll(long index, Collection<? extends Integer> c)
          Inserts all of the elements in the specified collection into this big list at the specified position (optional operation).
 boolean addAll(long index, IntBigList c)
          Delegates to a more generic method.
 boolean addAll(long index, IntCollection c)
          Delegates to a more generic method.
 void clear()
           
 boolean contains(int key)
           
 boolean containsAll(Collection<?> c)
          Checks whether this collection contains all elements from the given collection.
 boolean containsAll(IntCollection c)
          Checks whether this collection contains all elements from the given type-specific collection.
 int getInt(long index)
           
 int hashCode()
          Returns the hash code for this big list, which is identical to List.hashCode().
 long indexOf(int k)
           
 boolean isEmpty()
          Checks whether the stack is empty.
 IntBigListIterator iterator()
          Returns a type-specific iterator on the elements of this collection.
 long lastIndexOf(int k)
           
 IntBigListIterator listIterator()
          Returns a type-specific big-list iterator on this type-specific big list.
 IntBigListIterator listIterator(long index)
          Returns a type-specific list iterator on this type-specific big list starting at a given index.
 boolean removeAll(Collection<?> c)
          Remove from this collection all elements in the given collection.
 boolean removeAll(IntCollection c)
          Remove from this collection all elements in the given type-specific collection.
 void removeElements(long from, long to)
          Removes elements of this type-specific big list one-by-one.
 int removeInt(long index)
           
 boolean retainAll(Collection<?> c)
          Retains in this collection only elements from the given collection.
 boolean retainAll(IntCollection c)
          Retains in this collection only elements from the given type-specific collection.
 int set(long index, int k)
           
 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.
 IntBigList 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.
<T> T[]
toArray(T[] a)
          Returns an containing the items of this collection; the runtime type of the returned array is that of the specified array.
 int[] toIntArray()
          Returns a primitive type array containing the items of this collection.
 int[] toIntArray(int[] a)
          Returns a primitive type array containing the items of this collection.
 
Methods inherited from class it.unimi.dsi.fastutil.ints.AbstractIntBigList
add, addAll, addElements, addElements, compareTo, equals, get, getElements, getInt, indexOf, lastIndexOf, listIterator, peek, peekInt, pop, popInt, push, push, rem, remove, remove, removeInt, set, set, size, top, topInt, toString
 
Methods inherited from class it.unimi.dsi.fastutil.ints.AbstractIntCollection
add, contains, intIterator, rem, remove, toArray, toArray
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface it.unimi.dsi.fastutil.ints.IntCollection
intIterator, toArray
 
Methods inherited from interface java.util.Collection
add, contains, remove, toArray
 

Field Detail

serialVersionUID

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

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

@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<Integer>
Overrides:
size in class AbstractIntBigList
Returns:
the size of this data structure, minimized with Integer.MAX_VALUE.
See Also:
Collection.size()

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<Integer>
Overrides:
size in class AbstractIntBigList
Parameters:
size - the new size.

iterator

public IntBigListIterator iterator()
Description copied from interface: IntCollection
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 IntBigList
Specified by:
iterator in interface IntCollection
Specified by:
iterator in interface IntIterable
Specified by:
iterator in interface Iterable<Integer>
Specified by:
iterator in interface Collection<Integer>
Overrides:
iterator in class AbstractIntBigList
Returns:
a type-specific iterator on the elements of this collection.
See Also:
List.iterator()

listIterator

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

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

addAll

public boolean addAll(long index,
                      Collection<? extends Integer> 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<Integer>
Overrides:
addAll in class AbstractIntBigList
Parameters:
index - 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)

listIterator

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

Specified by:
listIterator in interface BigList<Integer>
Specified by:
listIterator in interface IntBigList
Overrides:
listIterator in class AbstractIntBigList
Parameters:
index - 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 IntBigList subList(long from,
                          long to)
Description copied from interface: IntBigList
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<Integer>
Specified by:
subList in interface IntBigList
Overrides:
subList in class AbstractIntBigList
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)

contains

public boolean contains(int key)
Specified by:
contains in interface IntCollection
Overrides:
contains in class AbstractIntBigList
See Also:
Collection.contains(Object)

toIntArray

public int[] toIntArray()
Description copied from interface: IntCollection
Returns a primitive type array containing the items of this collection.

Specified by:
toIntArray in interface IntCollection
Overrides:
toIntArray in class AbstractIntCollection
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: AbstractIntBigList
Removes elements of this type-specific big list one-by-one.

This is a trivial iterator-based implementation. It is expected that implementations will override this method with a more optimized version.

Specified by:
removeElements in interface IntBigList
Overrides:
removeElements in class AbstractIntBigList
Parameters:
from - the start index (inclusive).
to - the end index (exclusive).

toIntArray

public int[] toIntArray(int[] a)
Description copied from interface: IntCollection
Returns 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:
toIntArray in interface IntCollection
Overrides:
toIntArray in class AbstractIntCollection
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[])

add

public void add(long index,
                int key)
Specified by:
add in interface IntBigList
Overrides:
add in class AbstractIntBigList
See Also:
List.add(int,Object)

addAll

public boolean addAll(long index,
                      IntCollection c)
Description copied from class: AbstractIntBigList
Delegates to a more generic method.

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

addAll

public boolean addAll(long index,
                      IntBigList c)
Description copied from class: AbstractIntBigList
Delegates to a more generic method.

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

add

public boolean add(int key)
Specified by:
add in interface IntCollection
Overrides:
add in class AbstractIntBigList
See Also:
Collection.add(Object)

addAll

public boolean addAll(IntBigList c)
Specified by:
addAll in interface IntBigList
Overrides:
addAll in class AbstractIntBigList
See Also:
List.addAll(int,java.util.Collection)

getInt

public int getInt(long index)
Specified by:
getInt in interface IntBigList
See Also:
BigList.get(long)

indexOf

public long indexOf(int k)
Specified by:
indexOf in interface IntBigList
Overrides:
indexOf in class AbstractIntBigList
See Also:
BigList.indexOf(Object)

lastIndexOf

public long lastIndexOf(int k)
Specified by:
lastIndexOf in interface IntBigList
Overrides:
lastIndexOf in class AbstractIntBigList
See Also:
BigList.lastIndexOf(Object)

removeInt

public int removeInt(long index)
Specified by:
removeInt in interface IntBigList
Overrides:
removeInt in class AbstractIntBigList
See Also:
BigList.remove(long)

set

public int set(long index,
               int k)
Specified by:
set in interface IntBigList
Overrides:
set in class AbstractIntBigList
See Also:
BigList.set(long,Object)

addAll

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

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

containsAll

public boolean containsAll(IntCollection c)
Description copied from class: AbstractIntCollection
Checks whether this collection contains all elements from the given type-specific collection.

Specified by:
containsAll in interface IntCollection
Overrides:
containsAll in class AbstractIntCollection
Parameters:
c - a type-specific collection.
Returns:
true if this collection contains all elements of the argument.
See Also:
Collection.containsAll(Collection)

removeAll

public boolean removeAll(IntCollection c)
Description copied from class: AbstractIntCollection
Remove from this collection all elements in the given type-specific collection.

Specified by:
removeAll in interface IntCollection
Overrides:
removeAll in class AbstractIntCollection
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(IntCollection c)
Description copied from class: AbstractIntCollection
Retains in this collection only elements from the given type-specific collection.

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

isEmpty

public boolean isEmpty()
Description copied from interface: Stack
Checks whether the stack is empty.

Specified by:
isEmpty in interface Stack<Integer>
Specified by:
isEmpty in interface Collection<Integer>
Overrides:
isEmpty in class AbstractIntCollection
Returns:
true if the stack is empty.

toArray

public <T> T[] toArray(T[] a)
Description copied from interface: IntCollection
Returns an containing the items of this collection; the runtime type of the returned array is that of the specified array.

Warning: 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:
toArray in interface IntCollection
Specified by:
toArray in interface Collection<Integer>
Overrides:
toArray in class AbstractIntCollection
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[])

containsAll

public boolean containsAll(Collection<?> c)
Description copied from class: AbstractIntCollection
Checks whether this collection contains all elements from the given collection.

Specified by:
containsAll in interface Collection<Integer>
Overrides:
containsAll in class AbstractIntCollection
Parameters:
c - a collection.
Returns:
true if this collection contains all elements of the argument.

addAll

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

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

removeAll

public boolean removeAll(Collection<?> c)
Description copied from class: AbstractIntCollection
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<Integer>
Overrides:
removeAll in class AbstractIntCollection
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: AbstractIntCollection
Retains in this collection only elements from the given collection.

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

clear

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

hashCode

public int hashCode()
Description copied from class: AbstractIntBigList
Returns the hash code for this big list, which is identical to List.hashCode().

Specified by:
hashCode in interface Collection<Integer>
Overrides:
hashCode in class AbstractIntBigList
Returns:
the hash code for this big list.