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 | Interface and Description |
---|---|
interface |
FloatList
An ordered collection of
float values. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractFloatCollection
Abstract base class for
FloatCollection s. |
class |
ArrayFloatList
An
FloatList backed by an array of float s. |
class |
RandomAccessFloatList
Abstract base class for
FloatList s backed
by random access structures like arrays. |
protected static class |
RandomAccessFloatList.RandomAccessFloatSubList |
Modifier and Type | Method and Description |
---|---|
boolean |
FloatCollection.addAll(FloatCollection c)
Adds all of the elements in the
specified collection to me (optional operation). |
boolean |
AbstractFloatCollection.addAll(FloatCollection c) |
boolean |
ArrayFloatList.addAll(FloatCollection collection) |
boolean |
RandomAccessFloatList.addAll(int index,
FloatCollection collection) |
boolean |
FloatList.addAll(int index,
FloatCollection collection)
Inserts all of the elements in the specified collection into me,
at the specified position (optional operation).
|
boolean |
ArrayFloatList.addAll(int index,
FloatCollection collection) |
boolean |
FloatCollection.containsAll(FloatCollection c)
Returns
true iff I contain
all of the elements in the given collection. |
boolean |
AbstractFloatCollection.containsAll(FloatCollection c) |
boolean |
FloatCollection.removeAll(FloatCollection c)
Removes all of my elements that are contained in the
specified collection (optional operation).
|
boolean |
AbstractFloatCollection.removeAll(FloatCollection c) |
boolean |
FloatCollection.retainAll(FloatCollection c)
Removes all of my elements that are not contained in the
specified collection (optional operation).
|
boolean |
AbstractFloatCollection.retainAll(FloatCollection c) |
Constructor and Description |
---|
ArrayFloatList(FloatCollection that)
Constructs a list containing the elements of the given collection,
in the order they are returned by that collection's iterator.
|
Modifier and Type | Class and Description |
---|---|
class |
CollectionFloatCollection
|
class |
ListFloatList
|
Modifier and Type | Method and Description |
---|---|
protected FloatCollection |
FloatCollectionCollection.getFloatCollection() |
static FloatCollection |
Adapt.toFloatCollection(Collection c) |
static FloatCollection |
CollectionFloatCollection.wrap(Collection collection)
Create an
FloatCollection wrapping
the specified Collection . |
Modifier and Type | Method and Description |
---|---|
static Collection |
Adapt.toCollection(FloatCollection c) |
static Collection |
FloatCollectionCollection.wrap(FloatCollection collection)
Create a
Collection wrapping
the specified FloatCollection . |
Constructor and Description |
---|
FloatCollectionCollection(FloatCollection collection)
Creates a
Collection wrapping
the specified FloatCollection . |
Modifier and Type | Class and Description |
---|---|
class |
UnmodifiableFloatList |
Copyright © 2002-2013 The Apache Software Foundation. All Rights Reserved.