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

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

Classes in org.apache.commons.collections.primitives that implement ShortList
 class ArrayShortList
          An ShortList backed by an array of shorts.
 class ArrayUnsignedByteList
          A ShortList backed by an array of unsigned byte values.
 class RandomAccessShortList
          Abstract base class for ShortLists backed by random access structures like arrays.
protected static class RandomAccessShortList.RandomAccessShortSubList
           
 

Fields in org.apache.commons.collections.primitives declared as ShortList
static ShortList ShortCollections.EMPTY_SHORT_LIST
          An unmodifiable, empty ShortList
 

Methods in org.apache.commons.collections.primitives that return ShortList
static ShortList ShortCollections.getEmptyShortList()
          Returns an unmodifiable, empty ShortList.
static ShortList ShortCollections.singletonShortList(short value)
          Returns an unmodifiable ShortList containing only the specified element.
 ShortList ShortList.subList(int fromIndex, int toIndex)
          Returns a view of the elements within me between the specified fromIndex, inclusive, and toIndex, exclusive.
 ShortList RandomAccessShortList.subList(int fromIndex, int toIndex)
           
static ShortList ShortCollections.unmodifiableShortList(ShortList list)
          Returns an unmodifiable version of the given non-null ShortList.
 

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

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

Classes in org.apache.commons.collections.primitives.adapters that implement ShortList
 class ListShortList
          Adapts a Number-valued List to the ShortList interface.
 

Methods in org.apache.commons.collections.primitives.adapters that return ShortList
protected  ShortList ShortListList.getShortList()
           
static ShortList Adapt.toShortList(java.util.List c)
           
static ShortList ListShortList.wrap(java.util.List list)
          Create an ShortList wrapping the specified List.
 

Methods in org.apache.commons.collections.primitives.adapters with parameters of type ShortList
static java.util.List Adapt.toList(ShortList c)
           
static java.util.List ShortListList.wrap(ShortList list)
          Create a List wrapping the specified ShortList.
 

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

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

Classes in org.apache.commons.collections.primitives.decorators that implement ShortList
 class UnmodifiableShortList
           
 

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

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



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