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.singletonShortList(short value)
          Returns an unmodifiable ShortList containing only the specified element.
static ShortList ShortCollections.unmodifiableShortList(ShortList list)
          Returns an unmodifiable version of the given non-null ShortList.
static ShortList ShortCollections.getEmptyShortList()
          Returns an unmodifiable, empty ShortList.
 ShortList RandomAccessShortList.subList(int fromIndex, int toIndex)
           
 ShortList ShortList.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 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
(package private)  class org.apache.commons.collections.primitives.adapters.AbstractListShortList
           
 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 ListShortList.wrap(List list)
          Create an ShortList wrapping the specified List.
 

Methods in org.apache.commons.collections.primitives.adapters with parameters of type ShortList
static 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
(package private)  class org.apache.commons.collections.primitives.decorators.BaseProxyShortList
           
(package private)  class org.apache.commons.collections.primitives.decorators.BaseUnmodifiableShortList
           
 class UnmodifiableShortList
           
 

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

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



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