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

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

Classes in org.apache.commons.collections.primitives that implement LongList
 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
           
 

Fields in org.apache.commons.collections.primitives declared as LongList
static LongList LongCollections.EMPTY_LONG_LIST
          An unmodifiable, empty LongList
 

Methods in org.apache.commons.collections.primitives that return LongList
static LongList LongCollections.singletonLongList(long value)
          Returns an unmodifiable LongList containing only the specified element.
static LongList LongCollections.unmodifiableLongList(LongList list)
          Returns an unmodifiable version of the given non-null LongList.
static LongList LongCollections.getEmptyLongList()
          Returns an unmodifiable, empty LongList.
 LongList RandomAccessLongList.subList(int fromIndex, int toIndex)
           
 LongList LongList.subList(int fromIndex, int toIndex)
          Returns a view of the elements within me between the specified fromIndex, inclusive, and toIndex, exclusive.
 

Methods in org.apache.commons.collections.primitives with parameters of type LongList
static LongList LongCollections.unmodifiableLongList(LongList list)
          Returns an unmodifiable version of the given non-null LongList.
 

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

Classes in org.apache.commons.collections.primitives.adapters that implement LongList
(package private)  class org.apache.commons.collections.primitives.adapters.AbstractListLongList
           
 class ListLongList
          Adapts a Number-valued List to the LongList interface.
 

Methods in org.apache.commons.collections.primitives.adapters that return LongList
protected  LongList LongListList.getLongList()
           
static LongList ListLongList.wrap(List list)
          Create an LongList wrapping the specified List.
 

Methods in org.apache.commons.collections.primitives.adapters with parameters of type LongList
static List LongListList.wrap(LongList list)
          Create a List wrapping the specified LongList.
 

Constructors in org.apache.commons.collections.primitives.adapters with parameters of type LongList
LongListList(LongList list)
          Creates a List wrapping the specified LongList.
 

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

Classes in org.apache.commons.collections.primitives.decorators that implement LongList
(package private)  class org.apache.commons.collections.primitives.decorators.BaseProxyLongList
           
(package private)  class org.apache.commons.collections.primitives.decorators.BaseUnmodifiableLongList
           
 class UnmodifiableLongList
           
 

Methods in org.apache.commons.collections.primitives.decorators that return LongList
static LongList UnmodifiableLongList.wrap(LongList list)
           
protected  LongList UnmodifiableLongList.getProxiedList()
           
 

Methods in org.apache.commons.collections.primitives.decorators with parameters of type LongList
static LongList UnmodifiableLongList.wrap(LongList list)
           
 



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