public final class DoubleListList extends Object implements Serializable
DoubleList
to the
List
interface.
This implementation delegates most methods
to the provided DoubleList
implementation in the "obvious" way.Constructor and Description |
---|
DoubleListList(DoubleList list)
Creates a
List wrapping
the specified DoubleList . |
Modifier and Type | Method and Description |
---|---|
void |
add(int index,
Object element) |
boolean |
add(Object element) |
boolean |
addAll(Collection c) |
boolean |
addAll(int index,
Collection c) |
void |
clear() |
boolean |
contains(Object element) |
boolean |
containsAll(Collection c) |
boolean |
equals(Object obj) |
Object |
get(int index) |
protected DoubleCollection |
getDoubleCollection() |
protected DoubleList |
getDoubleList() |
int |
hashCode() |
int |
indexOf(Object element) |
boolean |
isEmpty() |
Iterator |
iterator()
|
int |
lastIndexOf(Object element) |
ListIterator |
listIterator()
|
ListIterator |
listIterator(int index)
|
Object |
remove(int index) |
boolean |
remove(Object element) |
boolean |
removeAll(Collection c) |
boolean |
retainAll(Collection c) |
Object |
set(int index,
Object element) |
int |
size() |
List |
subList(int fromIndex,
int toIndex) |
Object[] |
toArray() |
Object[] |
toArray(Object[] A) |
String |
toString() |
static List |
wrap(DoubleList list)
Create a
List wrapping
the specified DoubleList . |
public DoubleListList(DoubleList list)
List
wrapping
the specified DoubleList
.public static List wrap(DoubleList list)
list
- the (possibly null
)
DoubleList
to wrapList
wrapping the given
list, or null
when list is
null
.protected DoubleList getDoubleList()
public boolean addAll(int index, Collection c)
public int lastIndexOf(Object element)
lastIndexOf
in interface List
public ListIterator listIterator()
listIterator
in interface List
public ListIterator listIterator(int index)
listIterator
in interface List
public int hashCode()
protected final DoubleCollection getDoubleCollection()
public boolean add(Object element)
add
in interface Collection
public boolean addAll(Collection c)
addAll
in interface Collection
public void clear()
clear
in interface Collection
public boolean contains(Object element)
contains
in interface Collection
public boolean containsAll(Collection c)
containsAll
in interface Collection
public boolean isEmpty()
isEmpty
in interface Collection
public Iterator iterator()
iterator
in interface Iterable
iterator
in interface Collection
public boolean remove(Object element)
remove
in interface Collection
public boolean removeAll(Collection c)
removeAll
in interface Collection
public boolean retainAll(Collection c)
retainAll
in interface Collection
public int size()
size
in interface Collection
public Object[] toArray()
toArray
in interface Collection
public Object[] toArray(Object[] A)
toArray
in interface Collection
Copyright © 2002-2013 The Apache Software Foundation. All Rights Reserved.