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

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

Subinterfaces of BooleanCollection in org.apache.commons.collections.primitives
 interface BooleanList
          An ordered collection of byte values.
 

Classes in org.apache.commons.collections.primitives that implement BooleanCollection
 class AbstractBooleanCollection
          Abstract base class for BooleanCollections.
 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 with parameters of type BooleanCollection
 boolean AbstractBooleanCollection.addAll(BooleanCollection c)
           
 boolean BooleanCollection.addAll(BooleanCollection c)
          Adds all of the elements in the specified collection to me (optional operation).
 boolean ArrayBooleanList.addAll(BooleanCollection collection)
           
 boolean BooleanList.addAll(int index, BooleanCollection collection)
          Inserts all of the elements in the specified collection into me, at the specified position (optional operation).
 boolean RandomAccessBooleanList.addAll(int index, BooleanCollection collection)
           
 boolean ArrayBooleanList.addAll(int index, BooleanCollection collection)
           
 boolean AbstractBooleanCollection.containsAll(BooleanCollection c)
           
 boolean BooleanCollection.containsAll(BooleanCollection c)
          Returns true iff I contain all of the elements in the given collection.
 boolean AbstractBooleanCollection.removeAll(BooleanCollection c)
           
 boolean BooleanCollection.removeAll(BooleanCollection c)
          Removes all of my elements that are contained in the specified collection (optional operation).
 boolean AbstractBooleanCollection.retainAll(BooleanCollection c)
           
 boolean BooleanCollection.retainAll(BooleanCollection c)
          Removes all of my elements that are not contained in the specified collection (optional operation).
 

Constructors in org.apache.commons.collections.primitives with parameters of type BooleanCollection
ArrayBooleanList(BooleanCollection that)
          Constructs a list containing the elements of the given collection, in the order they are returned by that collection's iterator.
 

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

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

Methods in org.apache.commons.collections.primitives.adapters that return BooleanCollection
protected  BooleanCollection BooleanCollectionCollection.getBooleanCollection()
           
static BooleanCollection CollectionBooleanCollection.wrap(Collection collection)
          Create an BooleanCollection wrapping the specified Collection.
 

Methods in org.apache.commons.collections.primitives.adapters with parameters of type BooleanCollection
static Collection BooleanCollectionCollection.wrap(BooleanCollection collection)
          Create a Collection wrapping the specified BooleanCollection.
 

Constructors in org.apache.commons.collections.primitives.adapters with parameters of type BooleanCollection
BooleanCollectionCollection(BooleanCollection collection)
          Creates a Collection wrapping the specified BooleanCollection.
 



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