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 |
IntCollection.addAll(IntCollection values)
Adds a collection of primitive values to this collection (optional operation).
|
boolean |
IntCollection.containsAll(IntCollection values)
Checks if this collection contains all of the values in the specified collection.
|
boolean |
IntCollection.containsAny(IntCollection coll)
Checks if this collection contains any of the values in the specified collection.
|
boolean |
IntCollection.removeAll(IntCollection values)
Removes all occurrences from this collection of each primitive in the specified collection
(optional operation).
|
boolean |
IntCollection.retainAll(IntCollection 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 |
AbstractIntCollection
Abstract base class for collections of primitive
int elements. |
class |
ArrayIntCollection
Array based implementation of
IntCollection for
primitive int elements. |
Modifier and Type | Method and Description |
---|---|
boolean |
ArrayIntCollection.addAll(IntCollection values)
Adds a collection of primitive values to this collection.
|
boolean |
AbstractIntCollection.addAll(IntCollection values)
Adds a collection of primitive values to this collection (optional operation).
|
boolean |
AbstractIntCollection.containsAll(IntCollection values)
Checks if this collection contains all of the values in the specified collection.
|
boolean |
AbstractIntCollection.containsAny(IntCollection values)
Checks if this collection contains any of the values in the specified collection.
|
boolean |
AbstractIntCollection.removeAll(IntCollection values)
Removes all occurrences from this collection of each primitive in the specified collection.
|
boolean |
AbstractIntCollection.retainAll(IntCollection 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 |
IntList
Defines a list of primitive
int values. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractIntList
Abstract base class for lists of primitive
int elements. |
class |
ArrayIntList
Array based implementation of
IntList for
primitive int elements. |
class |
ImmutableArrayIntList
Immutable array-based implementation of
IntList for
primitive int elements. |
Copyright © 2005-2012 Joda.org. All Rights Reserved.