Uses of Interface
org.apache.commons.collections.primitives.DoubleCollection

Packages that use DoubleCollection
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. 
 

Uses of DoubleCollection in org.apache.commons.collections.primitives
 

Subinterfaces of DoubleCollection in org.apache.commons.collections.primitives
 interface DoubleList
          An ordered collection of double values.
 

Classes in org.apache.commons.collections.primitives that implement DoubleCollection
 class AbstractDoubleCollection
          Abstract base class for DoubleCollections.
 class ArrayDoubleList
          An DoubleList backed by an array of doubles.
 class RandomAccessDoubleList
          Abstract base class for DoubleLists backed by random access structures like arrays.
protected static class RandomAccessDoubleList.RandomAccessDoubleSubList
           
 

Methods in org.apache.commons.collections.primitives with parameters of type DoubleCollection
 boolean DoubleCollection.addAll(DoubleCollection c)
          Adds all of the elements in the specified collection to me (optional operation).
 boolean AbstractDoubleCollection.addAll(DoubleCollection c)
           
 boolean ArrayDoubleList.addAll(DoubleCollection collection)
           
 boolean DoubleList.addAll(int index, DoubleCollection collection)
          Inserts all of the elements in the specified collection into me, at the specified position (optional operation).
 boolean RandomAccessDoubleList.addAll(int index, DoubleCollection collection)
           
 boolean ArrayDoubleList.addAll(int index, DoubleCollection collection)
           
 boolean DoubleCollection.containsAll(DoubleCollection c)
          Returns true iff I contain all of the elements in the given collection.
 boolean AbstractDoubleCollection.containsAll(DoubleCollection c)
           
 boolean DoubleCollection.removeAll(DoubleCollection c)
          Removes all of my elements that are contained in the specified collection (optional operation).
 boolean AbstractDoubleCollection.removeAll(DoubleCollection c)
           
 boolean DoubleCollection.retainAll(DoubleCollection c)
          Removes all of my elements that are not contained in the specified collection (optional operation).
 boolean AbstractDoubleCollection.retainAll(DoubleCollection c)
           
 

Constructors in org.apache.commons.collections.primitives with parameters of type DoubleCollection
ArrayDoubleList(DoubleCollection that)
          Constructs a list containing the elements of the given collection, in the order they are returned by that collection's iterator.
 

Uses of DoubleCollection in org.apache.commons.collections.primitives.adapters
 

Classes in org.apache.commons.collections.primitives.adapters that implement DoubleCollection
 class CollectionDoubleCollection
          Adapts a Number-valued Collection to the DoubleCollection interface.
 class ListDoubleList
          Adapts a Number-valued List to the DoubleList interface.
 

Methods in org.apache.commons.collections.primitives.adapters that return DoubleCollection
protected  DoubleCollection DoubleCollectionCollection.getDoubleCollection()
           
static DoubleCollection Adapt.toDoubleCollection(Collection c)
           
static DoubleCollection CollectionDoubleCollection.wrap(Collection collection)
          Create an DoubleCollection wrapping the specified Collection.
 

Methods in org.apache.commons.collections.primitives.adapters with parameters of type DoubleCollection
static Collection Adapt.toCollection(DoubleCollection c)
           
static Collection DoubleCollectionCollection.wrap(DoubleCollection collection)
          Create a Collection wrapping the specified DoubleCollection.
 

Constructors in org.apache.commons.collections.primitives.adapters with parameters of type DoubleCollection
DoubleCollectionCollection(DoubleCollection collection)
          Creates a Collection wrapping the specified DoubleCollection.
 

Uses of DoubleCollection in org.apache.commons.collections.primitives.decorators
 

Classes in org.apache.commons.collections.primitives.decorators that implement DoubleCollection
 class UnmodifiableDoubleList
           
 



Copyright © 2002-2011 Apache Software Foundation. All Rights Reserved.