it.unimi.dsi.fastutil.shorts
Class ShortBigLists.ListBigList

java.lang.Object
  extended by java.util.AbstractCollection<Short>
      extended by it.unimi.dsi.fastutil.shorts.AbstractShortCollection
          extended by it.unimi.dsi.fastutil.shorts.AbstractShortBigList
              extended by it.unimi.dsi.fastutil.shorts.ShortBigLists.ListBigList
All Implemented Interfaces:
BigList<Short>, ShortBigList, ShortCollection, ShortIterable, ShortStack, Size64, Stack<Short>, Serializable, Comparable<BigList<? extends Short>>, Iterable<Short>, Collection<Short>
Enclosing class:
ShortBigLists

public static class ShortBigLists.ListBigList
extends AbstractShortBigList
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.shorts.AbstractShortBigList
AbstractShortBigList.ShortSubList
 
Field Summary
static long serialVersionUID
           
 
Method Summary
 void add(long index, short key)
           
 boolean add(short key)
           
 boolean addAll(Collection<? extends Short> c)
          Delegates to a more generic method.
 boolean addAll(long index, Collection<? extends Short> c)
          Inserts all of the elements in the specified collection into this big list at the specified position (optional operation).
 boolean addAll(long index, ShortBigList c)
          Delegates to a more generic method.
 boolean addAll(long index, ShortCollection c)
          Delegates to a more generic method.
 boolean addAll(ShortBigList c)
           
 boolean addAll(ShortCollection c)
          Adds all elements of the given type-specific collection to this collection.
 void clear()
           
 boolean contains(short key)
           
 boolean containsAll(Collection<?> c)
          Checks whether this collection contains all elements from the given collection.
 boolean containsAll(ShortCollection c)
          Checks whether this collection contains all elements from the given type-specific collection.
 short getShort(long index)
           
 int hashCode()
          Returns the hash code for this big list, which is identical to List.hashCode().
 long indexOf(short k)
           
 boolean isEmpty()
          Checks whether the stack is empty.
 ShortBigListIterator iterator()
          Returns a type-specific iterator on the elements of this collection.
 long lastIndexOf(short k)
           
 ShortBigListIterator listIterator()
          Returns a type-specific big-list iterator on this type-specific big list.
 ShortBigListIterator 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(ShortCollection 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.
 short removeShort(long index)
           
 boolean retainAll(Collection<?> c)
          Retains in this collection only elements from the given collection.
 boolean retainAll(ShortCollection c)
          Retains in this collection only elements from the given type-specific collection.
 short set(long index, short 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.
 ShortBigList 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.
 short[] toShortArray()
          Returns a primitive type array containing the items of this collection.
 short[] toShortArray(short[] a)
          Returns a primitive type array containing the items of this collection.
 
Methods inherited from class it.unimi.dsi.fastutil.shorts.AbstractShortBigList
add, addAll, addElements, addElements, compareTo, equals, get, getElements, getShort, indexOf, lastIndexOf, listIterator, peek, peekShort, pop, popShort, push, push, rem, remove, remove, removeShort, set, set, size, top, topShort, toString
 
Methods inherited from class it.unimi.dsi.fastutil.shorts.AbstractShortCollection
add, contains, rem, remove, shortIterator, toArray, toArray
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface it.unimi.dsi.fastutil.shorts.ShortCollection
shortIterator, 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<Short>
Overrides:
size in class AbstractShortBigList
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<Short>
Overrides:
size in class AbstractShortBigList
Parameters:
size - the new size.

iterator

public ShortBigListIterator iterator()
Description copied from interface: ShortCollection
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 ShortBigList
Specified by:
iterator in interface ShortCollection
Specified by:
iterator in interface ShortIterable
Specified by:
iterator in interface Iterable<Short>
Specified by:
iterator in interface Collection<Short>
Overrides:
iterator in class AbstractShortBigList
Returns:
a type-specific iterator on the elements of this collection.
See Also:
List.iterator()

listIterator

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

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

addAll

public boolean addAll(long index,
                      Collection<? extends Short> 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<Short>
Overrides:
addAll in class AbstractShortBigList
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 ShortBigListIterator listIterator(long index)
Description copied from interface: ShortBigList
Returns a type-specific list iterator on this type-specific big list starting at a given index.

Specified by:
listIterator in interface BigList<Short>
Specified by:
listIterator in interface ShortBigList
Overrides:
listIterator in class AbstractShortBigList
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 ShortBigList subList(long from,
                            long to)
Description copied from interface: ShortBigList
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<Short>
Specified by:
subList in interface ShortBigList
Overrides:
subList in class AbstractShortBigList
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(short key)
Specified by:
contains in interface ShortCollection
Overrides:
contains in class AbstractShortBigList
See Also:
Collection.contains(Object)

toShortArray

public short[] toShortArray()
Description copied from interface: ShortCollection
Returns a primitive type array containing the items of this collection.

Specified by:
toShortArray in interface ShortCollection
Overrides:
toShortArray in class AbstractShortCollection
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: AbstractShortBigList
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 ShortBigList
Overrides:
removeElements in class AbstractShortBigList
Parameters:
from - the start index (inclusive).
to - the end index (exclusive).

toShortArray

public short[] toShortArray(short[] a)
Description copied from interface: ShortCollection
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:
toShortArray in interface ShortCollection
Overrides:
toShortArray in class AbstractShortCollection
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,
                short key)
Specified by:
add in interface ShortBigList
Overrides:
add in class AbstractShortBigList
See Also:
List.add(int,Object)

addAll

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

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

addAll

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

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

add

public boolean add(short key)
Specified by:
add in interface ShortCollection
Overrides:
add in class AbstractShortBigList
See Also:
Collection.add(Object)

addAll

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

getShort

public short getShort(long index)
Specified by:
getShort in interface ShortBigList
See Also:
BigList.get(long)

indexOf

public long indexOf(short k)
Specified by:
indexOf in interface ShortBigList
Overrides:
indexOf in class AbstractShortBigList
See Also:
BigList.indexOf(Object)

lastIndexOf

public long lastIndexOf(short k)
Specified by:
lastIndexOf in interface ShortBigList
Overrides:
lastIndexOf in class AbstractShortBigList
See Also:
BigList.lastIndexOf(Object)

removeShort

public short removeShort(long index)
Specified by:
removeShort in interface ShortBigList
Overrides:
removeShort in class AbstractShortBigList
See Also:
BigList.remove(long)

set

public short set(long index,
                 short k)
Specified by:
set in interface ShortBigList
Overrides:
set in class AbstractShortBigList
See Also:
BigList.set(long,Object)

addAll

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

Specified by:
addAll in interface ShortCollection
Overrides:
addAll in class AbstractShortBigList
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(ShortCollection c)
Description copied from class: AbstractShortCollection
Checks whether this collection contains all elements from the given type-specific collection.

Specified by:
containsAll in interface ShortCollection
Overrides:
containsAll in class AbstractShortCollection
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(ShortCollection c)
Description copied from class: AbstractShortCollection
Remove from this collection all elements in the given type-specific collection.

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

Specified by:
retainAll in interface ShortCollection
Overrides:
retainAll in class AbstractShortCollection
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<Short>
Specified by:
isEmpty in interface Collection<Short>
Overrides:
isEmpty in class AbstractShortCollection
Returns:
true if the stack is empty.

toArray

public <T> T[] toArray(T[] a)
Description copied from interface: ShortCollection
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 ShortCollection
Specified by:
toArray in interface Collection<Short>
Overrides:
toArray in class AbstractShortCollection
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: AbstractShortCollection
Checks whether this collection contains all elements from the given collection.

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

addAll

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

Specified by:
addAll in interface Collection<Short>
Overrides:
addAll in class AbstractShortBigList
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: AbstractShortCollection
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<Short>
Overrides:
removeAll in class AbstractShortCollection
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: AbstractShortCollection
Retains in this collection only elements from the given collection.

Specified by:
retainAll in interface Collection<Short>
Overrides:
retainAll in class AbstractShortCollection
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<Short>
Overrides:
clear in class AbstractCollection<Short>

hashCode

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

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