|
||||||||||
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 |
LongList.addAll(int index,
LongCollection collection)
Inserts all of the elements in the specified collection into me, at the specified position (optional operation). |
boolean |
RandomAccessLongList.addAll(int index,
LongCollection collection)
|
boolean |
ArrayLongList.addAll(int index,
LongCollection collection)
|
boolean |
LongCollection.addAll(LongCollection c)
Adds all of the elements in the
specified collection to me (optional operation). |
boolean |
AbstractLongCollection.addAll(LongCollection c)
|
boolean |
ArrayLongList.addAll(LongCollection collection)
|
boolean |
LongCollection.containsAll(LongCollection c)
Returns true iff I contain
all of the elements in the given collection. |
boolean |
AbstractLongCollection.containsAll(LongCollection c)
|
boolean |
LongCollection.removeAll(LongCollection c)
Removes all of my elements that are contained in the specified collection (optional operation). |
boolean |
AbstractLongCollection.removeAll(LongCollection c)
|
boolean |
LongCollection.retainAll(LongCollection c)
Removes all of my elements that are not contained in the specified collection (optional operation). |
boolean |
AbstractLongCollection.retainAll(LongCollection c)
|
Constructors in org.apache.commons.collections.primitives with parameters of type LongCollection | |
---|---|
ArrayLongList(LongCollection that)
Constructs a list containing the elements of the given collection, in the order they are returned by that collection's iterator. |
|
ArrayUnsignedIntList(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 | |
---|---|
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 |
Adapt.toLongCollection(Collection c)
|
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 |
Adapt.toCollection(LongCollection c)
|
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 | |
---|---|
class |
UnmodifiableLongList
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |