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

java.lang.Object
  extended by org.apache.commons.collections.primitives.adapters.AbstractDoubleCollectionCollection
      extended by org.apache.commons.collections.primitives.adapters.AbstractDoubleListList
All Implemented Interfaces:
java.lang.Iterable, java.util.Collection, java.util.List
Direct Known Subclasses:
DoubleListList, NonSerializableDoubleListList

abstract class AbstractDoubleListList
extends AbstractDoubleCollectionCollection
implements java.util.List

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

Constructor Summary
AbstractDoubleListList()
           
 
Method Summary
 void add(int index, java.lang.Object element)
           
 boolean addAll(int index, java.util.Collection c)
           
 boolean equals(java.lang.Object obj)
           
 java.lang.Object get(int index)
           
protected  DoubleCollection getDoubleCollection()
           
protected abstract  DoubleList getDoubleList()
           
 int hashCode()
           
 int indexOf(java.lang.Object element)
           
 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)
           
 java.lang.Object set(int index, java.lang.Object element)
           
 java.util.List subList(int fromIndex, int toIndex)
           
 
Methods inherited from class org.apache.commons.collections.primitives.adapters.AbstractDoubleCollectionCollection
add, addAll, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, retainAll, size, 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, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray
 

Constructor Detail

AbstractDoubleListList

AbstractDoubleListList()
Method Detail

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.Collection
Specified by:
equals in interface java.util.List
Overrides:
equals in class java.lang.Object

hashCode

public int hashCode()
Specified by:
hashCode in interface java.util.Collection
Specified by:
hashCode in interface java.util.List
Overrides:
hashCode in class java.lang.Object

getDoubleCollection

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

getDoubleList

protected abstract DoubleList getDoubleList()


Copyright (c) 2002-2003 - Apache Software Foundation