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

Packages that use BooleanList
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. 
 

Uses of BooleanList in org.apache.commons.collections.primitives
 

Classes in org.apache.commons.collections.primitives that implement BooleanList
 class ArrayBooleanList
          An BooleanList backed by an array of booleans.
 class RandomAccessBooleanList
          Abstract base class for BooleanLists backed by random access structures like arrays.
protected static class RandomAccessBooleanList.RandomAccessBooleanSubList
           
 

Methods in org.apache.commons.collections.primitives that return BooleanList
 BooleanList BooleanList.subList(int fromIndex, int toIndex)
          Returns a view of the elements within me between the specified fromIndex, inclusive, and toIndex, exclusive.
 BooleanList RandomAccessBooleanList.subList(int fromIndex, int toIndex)
           
 

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

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

Methods in org.apache.commons.collections.primitives.adapters that return BooleanList
protected  BooleanList BooleanListList.getBooleanList()
           
static BooleanList ListBooleanList.wrap(List list)
          Create an BooleanList wrapping the specified List.
 

Methods in org.apache.commons.collections.primitives.adapters with parameters of type BooleanList
static List BooleanListList.wrap(BooleanList list)
          Create a List wrapping the specified BooleanList.
 

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



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