GNU Trove

gnu.trove.decorator
Class TLongListDecorator

java.lang.Object
  extended by java.util.AbstractCollection<E>
      extended by java.util.AbstractList<java.lang.Long>
          extended by gnu.trove.decorator.TLongListDecorator
All Implemented Interfaces:
java.io.Externalizable, java.io.Serializable, java.lang.Cloneable, java.lang.Iterable<java.lang.Long>, java.util.Collection<java.lang.Long>, java.util.List<java.lang.Long>

public class TLongListDecorator
extends java.util.AbstractList<java.lang.Long>
implements java.util.List<java.lang.Long>, java.io.Externalizable, java.lang.Cloneable

Wrapper class to make a TLongList conform to the java.util.List API. This class simply decorates an underlying TLongList and translates the Object-based APIs into their Trove primitive analogs.

Note that wrapping and unwrapping primitive values is extremely inefficient. If possible, users of this class should override the appropriate methods in this class and use a table of canonical values.

See Also:
Serialized Form

Field Summary
protected  TLongList list
          the wrapped primitive list
 
Fields inherited from class java.util.AbstractList
modCount
 
Constructor Summary
TLongListDecorator()
          FOR EXTERNALIZATION ONLY!!
TLongListDecorator(TLongList list)
          Creates a wrapper that decorates the specified primitive map.
 
Method Summary
 void add(int index, java.lang.Long value)
           
 java.lang.Long get(int index)
           
 TLongList getList()
          Returns a reference to the list wrapped by this decorator.
 void readExternal(java.io.ObjectInput in)
           
 java.lang.Long remove(int index)
           
 java.lang.Long set(int index, java.lang.Long value)
           
 int size()
           
 void writeExternal(java.io.ObjectOutput out)
           
 
Methods inherited from class java.util.AbstractList
add, addAll, clear, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, removeRange, subList
 
Methods inherited from class java.util.AbstractCollection
addAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.List
add, addAll, addAll, clear, contains, containsAll, equals, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, removeAll, retainAll, subList, toArray, toArray
 

Field Detail

list

protected TLongList list
the wrapped primitive list

Constructor Detail

TLongListDecorator

public TLongListDecorator()
FOR EXTERNALIZATION ONLY!!


TLongListDecorator

public TLongListDecorator(TLongList list)
Creates a wrapper that decorates the specified primitive map.

Parameters:
list - the TLongList to wrap.
Method Detail

getList

public TLongList getList()
Returns a reference to the list wrapped by this decorator.

Returns:
the wrapped TLongList instance.

size

public int size()
Specified by:
size in interface java.util.Collection<java.lang.Long>
Specified by:
size in interface java.util.List<java.lang.Long>
Specified by:
size in class java.util.AbstractCollection<java.lang.Long>

get

public java.lang.Long get(int index)
Specified by:
get in interface java.util.List<java.lang.Long>
Specified by:
get in class java.util.AbstractList<java.lang.Long>

set

public java.lang.Long set(int index,
                          java.lang.Long value)
Specified by:
set in interface java.util.List<java.lang.Long>
Overrides:
set in class java.util.AbstractList<java.lang.Long>

add

public void add(int index,
                java.lang.Long value)
Specified by:
add in interface java.util.List<java.lang.Long>
Overrides:
add in class java.util.AbstractList<java.lang.Long>

remove

public java.lang.Long remove(int index)
Specified by:
remove in interface java.util.List<java.lang.Long>
Overrides:
remove in class java.util.AbstractList<java.lang.Long>

readExternal

public void readExternal(java.io.ObjectInput in)
                  throws java.io.IOException,
                         java.lang.ClassNotFoundException
Specified by:
readExternal in interface java.io.Externalizable
Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeExternal

public void writeExternal(java.io.ObjectOutput out)
                   throws java.io.IOException
Specified by:
writeExternal in interface java.io.Externalizable
Throws:
java.io.IOException

GNU Trove