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.getEmptyIntList()
          Returns an unmodifiable, empty IntList.
static IntList IntCollections.singletonIntList(int value)
          Returns an unmodifiable IntList containing only the specified element.
 IntList IntList.subList(int fromIndex, int toIndex)
          Returns a view of the elements within me between the specified fromIndex, inclusive, and toIndex, exclusive.
 IntList RandomAccessIntList.subList(int fromIndex, int toIndex)
           
static IntList IntCollections.unmodifiableIntList(IntList list)
          Returns an unmodifiable version of the given non-null IntList.
 

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
 class ListIntList
          Adapts a Number-valued List to the IntList interface.
 

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

Methods in org.apache.commons.collections.primitives.adapters with parameters of type IntList
static java.util.List Adapt.toList(IntList c)
           
static java.util.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
 class UnmodifiableIntList
           
 

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

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



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