it.unimi.dsi.fastutil.chars
Class AbstractCharBigList.CharSubList

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.AbstractCharBigList.CharSubList
All Implemented Interfaces:
BigList<Character>, CharBigList, CharCollection, CharIterable, CharStack, Size64, Stack<Character>, Serializable, Comparable<BigList<? extends Character>>, Iterable<Character>, Collection<Character>
Enclosing class:
AbstractCharBigList

public static class AbstractCharBigList.CharSubList
extends AbstractCharBigList
implements Serializable

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
           
 
Constructor Summary
AbstractCharBigList.CharSubList(CharBigList l, long from, long to)
           
 
Method Summary
 boolean add(char k)
           
 void add(long index, char k)
           
 boolean addAll(long index, CharCollection c)
          Delegates to a more generic method.
 boolean addAll(long index, CharList l)
           
 boolean addAll(long index, Collection<? extends Character> c)
          Inserts all of the elements in the specified collection into this big list at the specified position (optional operation).
 void addElements(long index, char[][] a, long offset, long length)
          Adds elements to this type-specific big list one-by-one.
 void clear()
           
 char getChar(long index)
           
 void getElements(long from, char[][] a, long offset, long length)
          Copies element of this type-specific big list into the given big array one-by-one.
 CharBigListIterator listIterator(long index)
          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 remove(Object o)
          Delegates to the type-specific rem() method.
 char removeChar(long index)
           
 void removeElements(long from, long to)
          Removes elements of this type-specific big list one-by-one.
 char set(long index, char k)
           
 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.
 
Methods inherited from class it.unimi.dsi.fastutil.chars.AbstractCharBigList
add, addAll, addAll, addAll, addAll, addAll, addElements, compareTo, contains, equals, get, getChar, hashCode, indexOf, indexOf, iterator, lastIndexOf, lastIndexOf, listIterator, listIterator, peek, peekChar, pop, popChar, push, push, remove, remove, removeChar, set, set, size, size, size, top, topChar, toString
 
Methods inherited from class it.unimi.dsi.fastutil.chars.AbstractCharCollection
add, charIterator, contains, containsAll, containsAll, isEmpty, rem, removeAll, removeAll, retainAll, retainAll, toArray, toArray, toArray, toCharArray, 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, toCharArray
 
Methods inherited from interface java.util.Collection
add, contains, containsAll, isEmpty, removeAll, retainAll, toArray
 
Methods inherited from interface it.unimi.dsi.fastutil.Stack
isEmpty
 

Field Detail

serialVersionUID

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

AbstractCharBigList.CharSubList

public AbstractCharBigList.CharSubList(CharBigList l,
                                       long from,
                                       long to)
Method Detail

add

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

add

public void add(long index,
                char k)
Specified by:
add in interface CharBigList
Overrides:
add in class AbstractCharBigList
See Also:
List.add(int,Object)

addAll

public boolean addAll(long index,
                      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:
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)

getChar

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

removeChar

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

set

public char set(long index,
                char k)
Specified by:
set in interface CharBigList
Overrides:
set in class AbstractCharBigList
See Also:
BigList.set(long,Object)

clear

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

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.

getElements

public void getElements(long from,
                        char[][] a,
                        long offset,
                        long length)
Description copied from class: AbstractCharBigList
Copies element of this type-specific big list into the given big array 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:
getElements in interface CharBigList
Overrides:
getElements in class AbstractCharBigList
Parameters:
from - the start index (inclusive).
a - the destination big array.
offset - the offset into the destination big array where to store the first element copied.
length - the number of elements to be copied.

removeElements

public void removeElements(long from,
                           long to)
Description copied from class: AbstractCharBigList
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 CharBigList
Overrides:
removeElements in class AbstractCharBigList
Parameters:
from - the start index (inclusive).
to - the end index (exclusive).

addElements

public void addElements(long index,
                        char[][] a,
                        long offset,
                        long length)
Description copied from class: AbstractCharBigList
Adds elements to 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:
addElements in interface CharBigList
Overrides:
addElements in class AbstractCharBigList
Parameters:
index - the index at which to add elements.
a - the big array containing the elements.
offset - the offset of the first element to add.
length - the number of elements to add.

listIterator

public CharBigListIterator listIterator(long index)
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:
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 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)

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)

remove

public boolean remove(Object o)
Description copied from class: AbstractCharCollection
Delegates to the type-specific rem() method.

Specified by:
remove in interface Collection<Character>
Overrides:
remove in class AbstractCharCollection

addAll

public boolean addAll(long index,
                      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)

addAll

public boolean addAll(long index,
                      CharList l)