org.apache.commons.collections.primitives.adapters
public final class FloatListList extends AbstractFloatListList implements Serializable
FloatList
to the
List List
interface.
This implementation delegates most methods
to the provided FloatList
implementation in the "obvious" way.
Since: Commons Primitives 0.1
Version: $Revision: 1.2 $ $Date: 2003/10/14 20:04:18 $
Field Summary | |
---|---|
FloatList | _list |
Constructor Summary | |
---|---|
FloatListList(FloatList list)
Creates a List List wrapping
the specified FloatList . |
Method Summary | |
---|---|
protected FloatList | getFloatList() |
static List | wrap(FloatList list)
Create a List List wrapping
the specified FloatList . |
List List
wrapping
the specified FloatList
. When
the given list is null
,
returns null
.
Parameters: list the (possibly null
)
FloatList
to wrap
Returns: a List List
wrapping the given
list, or null
when list is
null
.