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: FloatListList [javadoc | source]
java.lang.Object
   org.apache.commons.collections.primitives.adapters.AbstractFloatCollectionCollection
      org.apache.commons.collections.primitives.adapters.AbstractFloatListList
         org.apache.commons.collections.primitives.adapters.FloatListList

All Implemented Interfaces:
    Serializable, List, Collection

Adapts an FloatList to the List interface.

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

Constructor:
 public FloatListList(FloatList list) 
Method from org.apache.commons.collections.primitives.adapters.FloatListList Summary:
getFloatList,   wrap
Methods from org.apache.commons.collections.primitives.adapters.AbstractFloatListList:
add,   addAll,   equals,   get,   getFloatCollection,   getFloatList,   hashCode,   indexOf,   lastIndexOf,   listIterator,   listIterator,   remove,   set,   subList
Methods from org.apache.commons.collections.primitives.adapters.AbstractFloatCollectionCollection:
add,   addAll,   clear,   contains,   containsAll,   getFloatCollection,   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.FloatListList Detail:
 protected FloatList getFloatList() 
 public static List wrap(FloatList list) 
    Create a List wrapping the specified FloatList . When the given list is null, returns null.