|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use LongCollection | |
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 LongCollection in org.apache.commons.collections.primitives |
Subinterfaces of LongCollection in org.apache.commons.collections.primitives | |
interface |
LongList
An ordered collection of long values. |
Classes in org.apache.commons.collections.primitives that implement LongCollection | |
class |
AbstractLongCollection
Abstract base class for LongCollection s. |
class |
ArrayLongList
An LongList backed by an array of long s. |
class |
ArrayUnsignedIntList
An IntList backed by an array of unsigned
int values. |
class |
RandomAccessLongList
Abstract base class for LongList s backed
by random access structures like arrays. |
protected static class |
RandomAccessLongList.RandomAccessLongSubList
|
Methods in org.apache.commons.collections.primitives with parameters of type LongCollection | |
boolean |
RandomAccessLongList.addAll(int index,
LongCollection collection)
|
boolean |
AbstractLongCollection.addAll(LongCollection c)
|
boolean |
AbstractLongCollection.containsAll(LongCollection c)
|
boolean |
AbstractLongCollection.removeAll(LongCollection c)
|
boolean |
AbstractLongCollection.retainAll(LongCollection c)
|
boolean |
LongList.addAll(int index,
LongCollection collection)
Inserts all of the elements in the specified collection into me, at the specified position (optional operation). |
boolean |
LongCollection.addAll(LongCollection c)
Adds all of the elements in the
specified collection to me (optional operation). |
boolean |
LongCollection.containsAll(LongCollection c)
Returns true iff I contain
all of the elements in the given collection. |
boolean |
LongCollection.removeAll(LongCollection c)
Removes all of my elements that are contained in the specified collection (optional operation). |
boolean |
LongCollection.retainAll(LongCollection 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 LongCollection | |
ArrayUnsignedIntList(LongCollection that)
Constructs a list containing the elements of the given collection, in the order they are returned by that collection's iterator. |
|
ArrayLongList(LongCollection that)
Constructs a list containing the elements of the given collection, in the order they are returned by that collection's iterator. |
Uses of LongCollection in org.apache.commons.collections.primitives.adapters |
Classes in org.apache.commons.collections.primitives.adapters that implement LongCollection | |
(package private) class |
org.apache.commons.collections.primitives.adapters.AbstractCollectionLongCollection
|
(package private) class |
org.apache.commons.collections.primitives.adapters.AbstractListLongList
|
class |
CollectionLongCollection
Adapts a Number -valued
Collection to the
LongCollection interface. |
class |
ListLongList
Adapts a Number -valued List
to the LongList interface. |
Methods in org.apache.commons.collections.primitives.adapters that return LongCollection | |
protected LongCollection |
LongCollectionCollection.getLongCollection()
|
static LongCollection |
CollectionLongCollection.wrap(Collection collection)
Create an LongCollection wrapping
the specified Collection . |
Methods in org.apache.commons.collections.primitives.adapters with parameters of type LongCollection | |
static Collection |
LongCollectionCollection.wrap(LongCollection collection)
Create a Collection wrapping
the specified LongCollection . |
Constructors in org.apache.commons.collections.primitives.adapters with parameters of type LongCollection | |
LongCollectionCollection(LongCollection collection)
Creates a Collection wrapping
the specified LongCollection . |
Uses of LongCollection in org.apache.commons.collections.primitives.decorators |
Classes in org.apache.commons.collections.primitives.decorators that implement LongCollection | |
(package private) class |
org.apache.commons.collections.primitives.decorators.BaseProxyLongCollection
|
(package private) class |
org.apache.commons.collections.primitives.decorators.BaseProxyLongList
|
(package private) class |
org.apache.commons.collections.primitives.decorators.BaseUnmodifiableLongList
|
class |
UnmodifiableLongList
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |