Package | Description |
---|---|
org.joda.primitives.collection | |
org.joda.primitives.collection.impl | |
org.joda.primitives.list | |
org.joda.primitives.list.impl |
Modifier and Type | Method and Description |
---|---|
boolean |
LongCollection.addAll(LongCollection values)
Adds a collection of primitive values to this collection (optional operation).
|
boolean |
LongCollection.containsAll(LongCollection values)
Checks if this collection contains all of the values in the specified collection.
|
boolean |
LongCollection.containsAny(LongCollection coll)
Checks if this collection contains any of the values in the specified collection.
|
boolean |
LongCollection.removeAll(LongCollection values)
Removes all occurrences from this collection of each primitive in the specified collection
(optional operation).
|
boolean |
LongCollection.retainAll(LongCollection values)
Retains each element of this collection that is present in the specified collection
removing all other values (optional operation).
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractLongCollection
Abstract base class for collections of primitive
long elements. |
class |
ArrayLongCollection
Array based implementation of
LongCollection for
primitive long elements. |
Modifier and Type | Method and Description |
---|---|
boolean |
ArrayLongCollection.addAll(LongCollection values)
Adds a collection of primitive values to this collection.
|
boolean |
AbstractLongCollection.addAll(LongCollection values)
Adds a collection of primitive values to this collection (optional operation).
|
boolean |
AbstractLongCollection.containsAll(LongCollection values)
Checks if this collection contains all of the values in the specified collection.
|
boolean |
AbstractLongCollection.containsAny(LongCollection values)
Checks if this collection contains any of the values in the specified collection.
|
boolean |
AbstractLongCollection.removeAll(LongCollection values)
Removes all occurrences from this collection of each primitive in the specified collection.
|
boolean |
AbstractLongCollection.retainAll(LongCollection values)
Retains each element of this collection that is present in the specified collection
removing all other values.
|
Modifier and Type | Interface and Description |
---|---|
interface |
LongList
Defines a list of primitive
long values. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractLongList
Abstract base class for lists of primitive
long elements. |
class |
ArrayLongList
Array based implementation of
LongList for
primitive int elements. |
class |
ImmutableArrayLongList
Immutable array-based implementation of
LongList for
primitive int elements. |
Copyright © 2005-2012 Joda.org. All Rights Reserved.