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

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

public final class CharCollectionCollection
extends AbstractCharCollectionCollection
implements java.io.Serializable

Adapts an CharCollection to the Collection interface.

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

Since:
Commons Primitives 1.0
Version:
$Revision: 1.3 $ $Date: 2003/10/16 20:49:38 $
Author:
Rodney Waldhoff
See Also:
Serialized Form

Field Summary
private  CharCollection _collection
           
 
Constructor Summary
CharCollectionCollection(CharCollection collection)
          Creates a Collection wrapping the specified CharCollection.
 
Method Summary
protected  CharCollection getCharCollection()
           
static java.util.Collection wrap(CharCollection collection)
          Create a Collection wrapping the specified CharCollection.
 
Methods inherited from class org.apache.commons.collections.primitives.adapters.AbstractCharCollectionCollection
add, addAll, clear, contains, containsAll, isEmpty, iterator, remove, removeAll, retainAll, size, toArray, toArray, toString
 
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
 

Field Detail

_collection

private CharCollection _collection
Constructor Detail

CharCollectionCollection

public CharCollectionCollection(CharCollection collection)
Creates a Collection wrapping the specified CharCollection.

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

wrap

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

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

getCharCollection

protected CharCollection getCharCollection()
Specified by:
getCharCollection in class AbstractCharCollectionCollection


Copyright (c) 2002-2003 - Apache Software Foundation