org.apache.commons.collections.primitives.adapters
Class DoubleListList

java.lang.Object
  extended byorg.apache.commons.collections.primitives.adapters.AbstractDoubleCollectionCollection
      extended byorg.apache.commons.collections.primitives.adapters.AbstractDoubleListList
          extended byorg.apache.commons.collections.primitives.adapters.DoubleListList
All Implemented Interfaces:
java.util.Collection, java.util.List, java.io.Serializable

public final class DoubleListList
extends AbstractDoubleListList
implements java.io.Serializable

Adapts an DoubleList to the List interface.

This implementation delegates most methods to the provided DoubleList implementation in the "obvious" way.

Since:
Commons Primitives 1.0
Version:
$Revision: 1.3 $ $Date: 2003/10/16 20:49:38 $
Author:
Rodney Waldhoff
See Also:
Serialized Form

Field Summary
private  DoubleList _list
           
 
Constructor Summary
DoubleListList(DoubleList list)
          Creates a List wrapping the specified DoubleList.
 
Method Summary
 void add(int index, java.lang.Object element)
           
 boolean add(java.lang.Object element)
           
 boolean addAll(java.util.Collection c)
           
 boolean addAll(int index, java.util.Collection c)
           
 void clear()
           
 boolean contains(java.lang.Object element)
           
 boolean containsAll(java.util.Collection c)
           
 boolean equals(java.lang.Object obj)
           
 java.lang.Object get(int index)
           
protected  DoubleCollection getDoubleCollection()
           
protected  DoubleList getDoubleList()
           
 int hashCode()
           
 int indexOf(java.lang.Object element)
           
 boolean isEmpty()
           
 java.util.Iterator iterator()
          wraps the DoubleIterator returned by my underlying DoubleCollection, if any.
 int lastIndexOf(java.lang.Object element)
           
 java.util.ListIterator listIterator()
          wraps the DoubleListIterator returned by my underlying DoubleList, if any.
 java.util.ListIterator listIterator(int index)
          wraps the DoubleListIterator returned by my underlying DoubleList, if any.
 java.lang.Object remove(int index)
           
 boolean remove(java.lang.Object element)
           
 boolean removeAll(java.util.Collection c)
           
 boolean retainAll(java.util.Collection c)
           
 java.lang.Object set(int index, java.lang.Object element)
           
 int size()
           
 java.util.List subList(int fromIndex, int toIndex)
           
 java.lang.Object[] toArray()
           
 java.lang.Object[] toArray(java.lang.Object[] A)
           
 java.lang.String toString()
           
static java.util.List wrap(DoubleList list)
          Create a List wrapping the specified DoubleList.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.List
add, addAll, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray
 

Field Detail

_list

private DoubleList _list
Constructor Detail

DoubleListList

public DoubleListList(DoubleList list)
Creates a List wrapping the specified DoubleList.

See Also:
wrap(org.apache.commons.collections.primitives.DoubleList)
Method Detail

wrap

public static java.util.List wrap(DoubleList list)
Create a List wrapping the specified DoubleList. When the given list is null, returns null.

Parameters:
list - the (possibly null) DoubleList to wrap
Returns:
a List wrapping the given list, or null when list is null.

getDoubleList

protected DoubleList getDoubleList()
Specified by:
getDoubleList in class AbstractDoubleListList

add

public void add(int index,
                java.lang.Object element)
Specified by:
add in interface java.util.List

addAll

public boolean addAll(int index,
                      java.util.Collection c)
Specified by:
addAll in interface java.util.List

get

public java.lang.Object get(int index)
Specified by:
get in interface java.util.List

indexOf

public int indexOf(java.lang.Object element)
Specified by:
indexOf in interface java.util.List

lastIndexOf

public int lastIndexOf(java.lang.Object element)
Specified by:
lastIndexOf in interface java.util.List

listIterator

public java.util.ListIterator listIterator()
wraps the DoubleListIterator returned by my underlying DoubleList, if any.

Specified by:
listIterator in interface java.util.List

listIterator

public java.util.ListIterator listIterator(int index)
wraps the DoubleListIterator returned by my underlying DoubleList, if any.

Specified by:
listIterator in interface java.util.List

remove

public java.lang.Object remove(int index)
Specified by:
remove in interface java.util.List

set

public java.lang.Object set(int index,
                            java.lang.Object element)
Specified by:
set in interface java.util.List

subList

public java.util.List subList(int fromIndex,
                              int toIndex)
Specified by:
subList in interface java.util.List

equals

public boolean equals(java.lang.Object obj)
Specified by:
equals in interface java.util.List

hashCode

public int hashCode()
Specified by:
hashCode in interface java.util.List

getDoubleCollection

protected final DoubleCollection getDoubleCollection()
Specified by:
getDoubleCollection in class AbstractDoubleCollectionCollection

add

public boolean add(java.lang.Object element)
Specified by:
add in interface java.util.Collection

addAll

public boolean addAll(java.util.Collection c)
Specified by:
addAll in interface java.util.Collection

clear

public void clear()
Specified by:
clear in interface java.util.Collection

contains

public boolean contains(java.lang.Object element)
Specified by:
contains in interface java.util.Collection

containsAll

public boolean containsAll(java.util.Collection c)
Specified by:
containsAll in interface java.util.Collection

toString

public java.lang.String toString()

isEmpty

public boolean isEmpty()
Specified by:
isEmpty in interface java.util.Collection

iterator

public java.util.Iterator iterator()
wraps the DoubleIterator returned by my underlying DoubleCollection, if any.

Specified by:
iterator in interface java.util.Collection

remove

public boolean remove(java.lang.Object element)
Specified by:
remove in interface java.util.Collection

removeAll

public boolean removeAll(java.util.Collection c)
Specified by:
removeAll in interface java.util.Collection

retainAll

public boolean retainAll(java.util.Collection c)
Specified by:
retainAll in interface java.util.Collection

size

public int size()
Specified by:
size in interface java.util.Collection

toArray

public java.lang.Object[] toArray()
Specified by:
toArray in interface java.util.Collection

toArray

public java.lang.Object[] toArray(java.lang.Object[] A)
Specified by:
toArray in interface java.util.Collection


Copyright (c) 2002-2003 - Apache Software Foundation