org.apache.commons.collections.primitives.adapters
Class BooleanCollectionCollection
java.lang.Object
org.apache.commons.collections.primitives.adapters.BooleanCollectionCollection
- All Implemented Interfaces:
- Serializable, Iterable, Collection
public final class BooleanCollectionCollection
- extends Object
- implements Serializable
Adapts an BooleanCollection
to the Collection
interface.
This implementation delegates most methods to the provided BooleanCollection
implementation in the "obvious" way.
- Since:
- Commons Primitives 1.1
- Version:
- $Revision: 480462 $ $Date: 2006-11-29 09:15:00 +0100 (Wed, 29 Nov 2006) $
- See Also:
- Serialized Form
BooleanCollectionCollection
public BooleanCollectionCollection(BooleanCollection collection)
- Creates a
Collection
wrapping the specified
BooleanCollection
.
- See Also:
wrap(org.apache.commons.collections.primitives.BooleanCollection)
wrap
public static Collection wrap(BooleanCollection collection)
- Create a
Collection
wrapping the specified
BooleanCollection
. When the given collection is null
, returns null
.
- Parameters:
collection
- the (possibly null
)
BooleanCollection
to wrap
- Returns:
- a
Collection
wrapping the given
collection, or null
when collection is
null
.
getBooleanCollection
protected BooleanCollection getBooleanCollection()
add
public boolean add(Object element)
- Specified by:
add
in interface Collection
addAll
public boolean addAll(Collection c)
- Specified by:
addAll
in interface Collection
clear
public void clear()
- Specified by:
clear
in interface Collection
contains
public boolean contains(Object element)
- Specified by:
contains
in interface Collection
containsAll
public boolean containsAll(Collection c)
- Specified by:
containsAll
in interface Collection
toString
public String toString()
- Overrides:
toString
in class Object
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interface Collection
iterator
public Iterator iterator()
wraps
the
BooleanIterator
returned by my underlying
BooleanCollection
, if any.
- Specified by:
iterator
in interface Iterable
- Specified by:
iterator
in interface Collection
remove
public boolean remove(Object element)
- Specified by:
remove
in interface Collection
removeAll
public boolean removeAll(Collection c)
- Specified by:
removeAll
in interface Collection
retainAll
public boolean retainAll(Collection c)
- Specified by:
retainAll
in interface Collection
size
public int size()
- Specified by:
size
in interface Collection
toArray
public Object[] toArray()
- Specified by:
toArray
in interface Collection
toArray
public Object[] toArray(Object[] A)
- Specified by:
toArray
in interface Collection
Copyright © 2002-2010 Apache Software Foundation. All Rights Reserved.