|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CharCollection | |
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. |
org.apache.commons.collections.primitives.decorators | Decorators of primitive collections. |
Uses of CharCollection in org.apache.commons.collections.primitives |
Subinterfaces of CharCollection in org.apache.commons.collections.primitives | |
interface |
CharList
An ordered collection of char values. |
Classes in org.apache.commons.collections.primitives that implement CharCollection | |
class |
AbstractCharCollection
Abstract base class for CharCollection s. |
class |
ArrayCharList
An CharList backed by an array of char s. |
class |
RandomAccessCharList
Abstract base class for CharList s backed
by random access structures like arrays. |
protected static class |
RandomAccessCharList.RandomAccessCharSubList
|
Methods in org.apache.commons.collections.primitives with parameters of type CharCollection | |
boolean |
RandomAccessCharList.addAll(int index,
CharCollection collection)
|
boolean |
AbstractCharCollection.addAll(CharCollection c)
|
boolean |
AbstractCharCollection.containsAll(CharCollection c)
|
boolean |
AbstractCharCollection.removeAll(CharCollection c)
|
boolean |
AbstractCharCollection.retainAll(CharCollection c)
|
boolean |
CharList.addAll(int index,
CharCollection collection)
Inserts all of the elements in the specified collection into me, at the specified position (optional operation). |
boolean |
CharCollection.addAll(CharCollection c)
Adds all of the elements in the
specified collection to me (optional operation). |
boolean |
CharCollection.containsAll(CharCollection c)
Returns true iff I contain
all of the elements in the given collection. |
boolean |
CharCollection.removeAll(CharCollection c)
Removes all of my elements that are contained in the specified collection (optional operation). |
boolean |
CharCollection.retainAll(CharCollection 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 CharCollection | |
ArrayCharList(CharCollection that)
Constructs a list containing the elements of the given collection, in the order they are returned by that collection's iterator. |
Uses of CharCollection in org.apache.commons.collections.primitives.adapters |
Classes in org.apache.commons.collections.primitives.adapters that implement CharCollection | |
(package private) class |
org.apache.commons.collections.primitives.adapters.AbstractCollectionCharCollection
|
(package private) class |
org.apache.commons.collections.primitives.adapters.AbstractListCharList
|
class |
CollectionCharCollection
Adapts a Number -valued
Collection to the
CharCollection interface. |
class |
ListCharList
Adapts a Number -valued List
to the CharList interface. |
Methods in org.apache.commons.collections.primitives.adapters that return CharCollection | |
static CharCollection |
CollectionCharCollection.wrap(Collection collection)
Create an CharCollection wrapping
the specified Collection . |
protected CharCollection |
CharCollectionCollection.getCharCollection()
|
Methods in org.apache.commons.collections.primitives.adapters with parameters of type CharCollection | |
static Collection |
CharCollectionCollection.wrap(CharCollection collection)
Create a Collection wrapping
the specified CharCollection . |
Constructors in org.apache.commons.collections.primitives.adapters with parameters of type CharCollection | |
CharCollectionCollection(CharCollection collection)
Creates a Collection wrapping
the specified CharCollection . |
Uses of CharCollection in org.apache.commons.collections.primitives.decorators |
Classes in org.apache.commons.collections.primitives.decorators that implement CharCollection | |
(package private) class |
org.apache.commons.collections.primitives.decorators.BaseProxyCharCollection
|
(package private) class |
org.apache.commons.collections.primitives.decorators.BaseProxyCharList
|
(package private) class |
org.apache.commons.collections.primitives.decorators.BaseUnmodifiableCharList
|
class |
UnmodifiableCharList
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |