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

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

Classes in org.apache.commons.collections.primitives that implement CharList
 class ArrayCharList
          An CharList backed by an array of chars.
 class RandomAccessCharList
          Abstract base class for CharLists backed by random access structures like arrays.
protected static class RandomAccessCharList.RandomAccessCharSubList
           
 

Fields in org.apache.commons.collections.primitives declared as CharList
static CharList CharCollections.EMPTY_CHAR_LIST
          An unmodifiable, empty CharList
 

Methods in org.apache.commons.collections.primitives that return CharList
static CharList CharCollections.getEmptyCharList()
          Returns an unmodifiable, empty CharList.
static CharList CharCollections.singletonCharList(char value)
          Returns an unmodifiable CharList containing only the specified element.
 CharList CharList.subList(int fromIndex, int toIndex)
          Returns a view of the elements within me between the specified fromIndex, inclusive, and toIndex, exclusive.
 CharList RandomAccessCharList.subList(int fromIndex, int toIndex)
           
static CharList CharCollections.unmodifiableCharList(CharList list)
          Returns an unmodifiable version of the given non-null CharList.
 

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

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

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

Methods in org.apache.commons.collections.primitives.adapters that return CharList
protected  CharList CharListList.getCharList()
           
static CharList Adapt.toCharList(java.util.List c)
           
static CharList ListCharList.wrap(java.util.List list)
          Create an CharList wrapping the specified List.
 

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

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

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

Classes in org.apache.commons.collections.primitives.decorators that implement CharList
 class UnmodifiableCharList
           
 

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

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



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