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

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

Classes in org.apache.commons.collections.primitives that implement IntList
 class ArrayIntList
          An IntList backed by an array of ints.
 class ArrayUnsignedShortList
          An IntList backed by an array of unsigned short values.
 class RandomAccessIntList
          Abstract base class for IntLists backed by random access structures like arrays.
protected static class RandomAccessIntList.RandomAccessIntSubList
           
 

Fields in org.apache.commons.collections.primitives declared as IntList
static IntList IntCollections.EMPTY_INT_LIST
          An unmodifiable, empty IntList
 

Methods in org.apache.commons.collections.primitives that return IntList
static IntList IntCollections.singletonIntList(int value)
          Returns an unmodifiable IntList containing only the specified element.
static IntList IntCollections.unmodifiableIntList(IntList list)
          Returns an unmodifiable version of the given non-null IntList.
static IntList IntCollections.getEmptyIntList()
          Returns an unmodifiable, empty IntList.
 IntList RandomAccessIntList.subList(int fromIndex, int toIndex)
           
 IntList IntList.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 IntList
static IntList IntCollections.unmodifiableIntList(IntList list)
          Returns an unmodifiable version of the given non-null IntList.
 

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

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

Methods in org.apache.commons.collections.primitives.adapters that return IntList
static IntList ListIntList.wrap(List list)
          Create an IntList wrapping the specified List.
protected  IntList IntListList.getIntList()
           
 

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

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

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

Classes in org.apache.commons.collections.primitives.decorators that implement IntList
(package private)  class org.apache.commons.collections.primitives.decorators.BaseProxyIntList
           
(package private)  class org.apache.commons.collections.primitives.decorators.BaseUnmodifiableIntList
           
 class UnmodifiableIntList
           
 

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

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



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