Package | Description |
---|---|
org.apache.commons.collections.primitives |
Collections of primitive values.
|
org.apache.commons.collections.primitives.adapters |
Adapters for converting between the
primitive and object based versions of the
collections framework.
|
org.apache.commons.collections.primitives.decorators |
Decorators of primitive collections.
|
Modifier and Type | Class and Description |
---|---|
class |
ArrayDoubleList
An
DoubleList backed by an array of double s. |
class |
RandomAccessDoubleList
Abstract base class for
DoubleList s backed
by random access structures like arrays. |
protected static class |
RandomAccessDoubleList.RandomAccessDoubleSubList |
Modifier and Type | Field and Description |
---|---|
static DoubleList |
DoubleCollections.EMPTY_DOUBLE_LIST
An unmodifiable, empty DoubleList
|
Modifier and Type | Method and Description |
---|---|
static DoubleList |
DoubleCollections.getEmptyDoubleList()
Returns an unmodifiable, empty DoubleList.
|
static DoubleList |
DoubleCollections.singletonDoubleList(double value)
Returns an unmodifiable DoubleList containing only the specified element.
|
DoubleList |
DoubleList.subList(int fromIndex,
int toIndex)
Returns a view of the elements within me
between the specified fromIndex, inclusive, and
toIndex, exclusive.
|
DoubleList |
RandomAccessDoubleList.subList(int fromIndex,
int toIndex) |
static DoubleList |
DoubleCollections.unmodifiableDoubleList(DoubleList list)
Returns an unmodifiable version of the given non-null DoubleList.
|
Modifier and Type | Method and Description |
---|---|
static DoubleList |
DoubleCollections.unmodifiableDoubleList(DoubleList list)
Returns an unmodifiable version of the given non-null DoubleList.
|
Modifier and Type | Class and Description |
---|---|
class |
ListDoubleList
|
Modifier and Type | Method and Description |
---|---|
protected DoubleList |
DoubleListList.getDoubleList() |
static DoubleList |
Adapt.toDoubleList(List c) |
static DoubleList |
ListDoubleList.wrap(List list)
Create an
DoubleList wrapping
the specified List . |
Modifier and Type | Method and Description |
---|---|
static List |
Adapt.toList(DoubleList c) |
static List |
DoubleListList.wrap(DoubleList list)
Create a
List wrapping
the specified DoubleList . |
Constructor and Description |
---|
DoubleListList(DoubleList list)
Creates a
List wrapping
the specified DoubleList . |
Modifier and Type | Class and Description |
---|---|
class |
UnmodifiableDoubleList |
Modifier and Type | Method and Description |
---|---|
protected DoubleList |
UnmodifiableDoubleList.getProxiedList() |
static DoubleList |
UnmodifiableDoubleList.wrap(DoubleList list) |
Modifier and Type | Method and Description |
---|---|
static DoubleList |
UnmodifiableDoubleList.wrap(DoubleList list) |
Copyright © 2002-2013 The Apache Software Foundation. All Rights Reserved.