org.apache.commons.collections.primitives.adapters
Class CharCollectionCollection
java.lang.Object
org.apache.commons.collections.primitives.adapters.AbstractCharCollectionCollection
org.apache.commons.collections.primitives.adapters.CharCollectionCollection
- All Implemented Interfaces:
- java.util.Collection, java.io.Serializable
- 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
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 |
_collection
private CharCollection _collection
CharCollectionCollection
public CharCollectionCollection(CharCollection collection)
- Creates a
Collection
wrapping
the specified CharCollection
.
- See Also:
wrap(org.apache.commons.collections.primitives.CharCollection)
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
add
public boolean add(java.lang.Object element)
- Specified by:
add
in interface java.util.Collection
addAll
public boolean addAll(java.util.Collection c)
- Specified by:
addAll
in interface java.util.Collection
clear
public void clear()
- Specified by:
clear
in interface java.util.Collection
contains
public boolean contains(java.lang.Object element)
- Specified by:
contains
in interface java.util.Collection
containsAll
public boolean containsAll(java.util.Collection c)
- Specified by:
containsAll
in interface java.util.Collection
toString
public java.lang.String toString()
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interface java.util.Collection
iterator
public java.util.Iterator iterator()
wraps
the
CharIterator
returned by my underlying
CharCollection
,
if any.
- Specified by:
iterator
in interface java.util.Collection
remove
public boolean remove(java.lang.Object element)
- Specified by:
remove
in interface java.util.Collection
removeAll
public boolean removeAll(java.util.Collection c)
- Specified by:
removeAll
in interface java.util.Collection
retainAll
public boolean retainAll(java.util.Collection c)
- Specified by:
retainAll
in interface java.util.Collection
size
public int size()
- Specified by:
size
in interface java.util.Collection
toArray
public java.lang.Object[] toArray()
- Specified by:
toArray
in interface java.util.Collection
toArray
public java.lang.Object[] toArray(java.lang.Object[] A)
- Specified by:
toArray
in interface java.util.Collection
Copyright (c) 2002-2003 - Apache Software Foundation