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

Packages that use LongCollection
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 LongCollection in org.apache.commons.collections.primitives
 

Subinterfaces of LongCollection in org.apache.commons.collections.primitives
 interface LongList
          An ordered collection of long values.
 

Classes in org.apache.commons.collections.primitives that implement LongCollection
 class AbstractLongCollection
          Abstract base class for LongCollections.
 class ArrayLongList
          An LongList backed by an array of longs.
 class ArrayUnsignedIntList
          An IntList backed by an array of unsigned int values.
 class RandomAccessLongList
          Abstract base class for LongLists backed by random access structures like arrays.
protected static class RandomAccessLongList.RandomAccessLongSubList
           
 

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

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

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

Classes in org.apache.commons.collections.primitives.adapters that implement LongCollection
 class CollectionLongCollection
          Adapts a Number-valued Collection to the LongCollection interface.
 class ListLongList
          Adapts a Number-valued List to the LongList interface.
 

Methods in org.apache.commons.collections.primitives.adapters that return LongCollection
protected  LongCollection LongCollectionCollection.getLongCollection()
           
static LongCollection Adapt.toLongCollection(java.util.Collection c)
           
static LongCollection CollectionLongCollection.wrap(java.util.Collection collection)
          Create an LongCollection wrapping the specified Collection.
 

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

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

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

Classes in org.apache.commons.collections.primitives.decorators that implement LongCollection
 class UnmodifiableLongList
           
 



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