Save This Page
Home » commons-collections-3.2.1-src » org.apache.commons » collections » primitives » adapters » [javadoc | source]
org.apache.commons.collections.primitives.adapters
public final class: CharListList [javadoc | source]
java.lang.Object
   org.apache.commons.collections.primitives.adapters.AbstractCharCollectionCollection
      org.apache.commons.collections.primitives.adapters.AbstractCharListList
         org.apache.commons.collections.primitives.adapters.CharListList

All Implemented Interfaces:
    Serializable, List, Collection

Adapts an CharList to the List interface.

This implementation delegates most methods to the provided CharList implementation in the "obvious" way.

Constructor:
 public CharListList(CharList list) 
Method from org.apache.commons.collections.primitives.adapters.CharListList Summary:
getCharList,   wrap
Methods from org.apache.commons.collections.primitives.adapters.AbstractCharListList:
add,   addAll,   equals,   get,   getCharCollection,   getCharList,   hashCode,   indexOf,   lastIndexOf,   listIterator,   listIterator,   remove,   set,   subList
Methods from org.apache.commons.collections.primitives.adapters.AbstractCharCollectionCollection:
add,   addAll,   clear,   contains,   containsAll,   getCharCollection,   isEmpty,   iterator,   remove,   removeAll,   retainAll,   size,   toArray,   toArray,   toString
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.commons.collections.primitives.adapters.CharListList Detail:
 protected CharList getCharList() 
 public static List wrap(CharList list) 
    Create a List wrapping the specified CharList . When the given list is null, returns null.