org.apache.commons.collections.primitives.adapters
Class ByteCollectionCollection

java.lang.Object
  extended by org.apache.commons.collections.primitives.adapters.ByteCollectionCollection
All Implemented Interfaces:
Serializable, Iterable, Collection

public final class ByteCollectionCollection
extends Object
implements Serializable

Adapts an ByteCollection to the Collection interface.

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

Since:
Commons Primitives 1.0
Version:
$Revision: 480462 $ $Date: 2006-11-29 09:15:00 +0100(mer, 29 nov 2006) $
Author:
Rodney Waldhoff
See Also:
Serialized Form

Constructor Summary
ByteCollectionCollection(ByteCollection collection)
          Creates a Collection wrapping the specified ByteCollection.
 
Method Summary
 boolean add(Object element)
           
 boolean addAll(Collection c)
           
 void clear()
           
 boolean contains(Object element)
           
 boolean containsAll(Collection c)
           
protected  ByteCollection getByteCollection()
           
 boolean isEmpty()
           
 Iterator iterator()
          wraps the ByteIterator returned by my underlying ByteCollection, if any.
 boolean remove(Object element)
           
 boolean removeAll(Collection c)
           
 boolean retainAll(Collection c)
           
 int size()
           
 Object[] toArray()
           
 Object[] toArray(Object[] A)
           
 String toString()
           
static Collection wrap(ByteCollection collection)
          Create a Collection wrapping the specified ByteCollection.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.Collection
equals, hashCode
 

Constructor Detail

ByteCollectionCollection

public ByteCollectionCollection(ByteCollection collection)
Creates a Collection wrapping the specified ByteCollection.

See Also:
wrap(org.apache.commons.collections.primitives.ByteCollection)
Method Detail

wrap

public static Collection wrap(ByteCollection collection)
Create a Collection wrapping the specified ByteCollection. When the given collection is null, returns null.

Parameters:
collection - the (possibly null) ByteCollection to wrap
Returns:
a Collection wrapping the given collection, or null when collection is null.

getByteCollection

protected ByteCollection getByteCollection()

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 ByteIterator returned by my underlying ByteCollection, 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-2011 Apache Software Foundation. All Rights Reserved.