public abstract class AbstractLongCollection extends AbstractPrimitiveCollectable<Long> implements LongCollection
long
elements.
This class implements Collection
allowing
seamless integration with other APIs.
The iterator
and size
must be implemented by subclases.
To make the subclass modifiable, the add(long)
and
iterator remove()
methods must also be implemented.
Subclasses may override other methods to increase efficiency.
Modifier | Constructor and Description |
---|---|
protected |
AbstractLongCollection()
Constructor.
|
Modifier and Type | Method and Description |
---|---|
boolean |
add(long value)
Adds a primitive value to this collection (optional operation).
|
boolean |
add(Long value)
Adds the
Long value to this collection (optional operation). |
boolean |
addAll(Collection<? extends Long> coll)
Adds a collection of
Long values to this collection (optional operation). |
boolean |
addAll(long[] values)
Adds an array of primitive values to this collection (optional operation).
|
boolean |
addAll(LongCollection values)
Adds a collection of primitive values to this collection (optional operation).
|
boolean |
addAll(long startInclusive,
long endInclusive)
Adds a range of primitive values to this collection (optional operation).
|
protected void |
arrayCopy(int fromIndex,
long[] dest,
int destIndex,
int size)
Copies data from this collection into the specified array.
|
protected void |
checkAddModifiable()
Check whether add is suported and throw an exception.
|
protected void |
checkRemoveModifiable()
Check whether remove is suported and throw an exception.
|
void |
clear()
Clears the collection/map of all elements (optional operation).
|
boolean |
contains(long value)
Checks whether this collection contains a specified primitive value.
|
boolean |
contains(Object value)
Checks whether this collection contains a specified
Long value. |
boolean |
containsAll(Collection<?> coll)
Checks if the collection contains all of the primitive values.
|
boolean |
containsAll(long[] values)
Checks if this collection contains all of the values in the specified array.
|
boolean |
containsAll(LongCollection values)
Checks if this collection contains all of the values in the specified collection.
|
boolean |
containsAll(long startInclusive,
long endInclusive)
Checks if this collection contain all the values in the specified range.
|
boolean |
containsAny(Collection<?> coll)
Checks if the collection contains any of the primitive values in the array.
|
boolean |
containsAny(long[] values)
Checks if this collection contains any of the values in the specified array.
|
boolean |
containsAny(LongCollection values)
Checks if this collection contains any of the values in the specified collection.
|
boolean |
containsAny(long startInclusive,
long endInclusive)
Checks if this collection contain some of the values in the specified range.
|
protected boolean |
isAddModifiable()
Are the add methods supported.
|
boolean |
isModifiable()
Is the collection modifiable in any way.
|
protected boolean |
isRemoveModifiable()
Are the remove methods supported.
|
protected boolean |
isToPrimitivePossible(Object value)
Checks if the object can be converted to a primitive successfully.
|
boolean |
remove(Object value)
Removes the first occurrance of the specified
Long value from
this collection (optional operation). |
boolean |
removeAll(Collection<?> coll)
Removes each of a collection of
Long values from this collection (optional operation). |
boolean |
removeAll(long value)
Removes all occurrences of the specified primitive value from this collection.
|
boolean |
removeAll(long[] values)
Removes all occurrences from this collection of each primitive in the specified array.
|
boolean |
removeAll(LongCollection values)
Removes all occurrences from this collection of each primitive in the specified collection.
|
boolean |
removeAll(long startInclusive,
long endInclusive)
Removes all occurrences of a range of primitive values from this collection.
|
boolean |
removeFirst(long value)
Removes the first occurrence of the specified primitive value from this collection
|
boolean |
retainAll(Collection<?> coll)
Retains each of a collection of
Long values, removing other
values (optional operation). |
boolean |
retainAll(long[] values)
Retains each element of this collection that is present in the specified array
removing all other values.
|
boolean |
retainAll(LongCollection values)
Retains each element of this collection that is present in the specified collection
removing all other values.
|
boolean |
retainAll(long startInclusive,
long endInclusive)
Retains all occurences of a range of primitive values within this collection
removing all values outside the range (optional operation).
|
Object[] |
toArray()
Gets the collection as an array of
Long . |
<T> T[] |
toArray(T[] array)
Gets the collection as an array, using the array provided.
|
long[] |
toLongArray()
Gets the elements of this collection as an array.
|
long[] |
toLongArray(long[] array,
int startIndex)
Copies the elements of this collection into an array at a specified position.
|
protected Long |
toObject(long value)
Wraps an
long with an Object wrapper. |
protected long |
toPrimitive(Object value)
Unwraps the
Long to retrieve the primitive long . |
protected long[] |
toPrimitiveArray(Collection<?> coll)
Unwraps a
Collection to retrieve the primitive long . |
String |
toString()
Gets a string representing this collection.
|
clone, isEmpty, optimize
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
iterator
clone, isEmpty, optimize, size
equals, hashCode, isEmpty, size
protected AbstractLongCollection()
public boolean contains(long value)
This implementation uses longIterator()
.
contains
in interface LongCollection
value
- the value to search fortrue
if the value is foundpublic boolean containsAll(long[] values)
true
is returned.
This implementation uses contains(long)
.
containsAll
in interface LongCollection
values
- the values to search for, null treated as empty arraytrue
if all of the values are foundpublic boolean containsAll(LongCollection values)
true
is returned.
This implementation uses contains(long)
.
containsAll
in interface LongCollection
values
- the values to search for, null treated as empty collectiontrue
if all of the values are foundpublic boolean containsAll(long startInclusive, long endInclusive)
The range is defined to be inclusive of the start and end.
If the start is greater than the end then the result is true
as the range is equivalent to an empty collection.
This implementation uses contains(long)
.
containsAll
in interface LongCollection
startInclusive
- the inclusive range start valueendInclusive
- the inclusive range end valuetrue
if the collection contains the entire rangepublic boolean containsAny(long[] values)
false
is returned.
This implementation uses contains(long)
.
containsAny
in interface LongCollection
values
- the values to search for, null treated as empty arraytrue
if at least one of the values is foundpublic boolean containsAny(LongCollection values)
false
is returned.
This implementation uses contains(long)
.
containsAny
in interface LongCollection
values
- the values to search for, null treated as empty collectiontrue
if at least one of the values is foundpublic boolean containsAny(long startInclusive, long endInclusive)
The range is defined to be inclusive of the start and end.
If the start is greater than the end then the result is false
as the range is equivalent to an empty collection.
This implementation uses contains(long)
.
containsAny
in interface LongCollection
startInclusive
- the inclusive range start valueendInclusive
- the inclusive range end valuetrue
if the collection contains at least one of the rangepublic long[] toLongArray()
This implementation uses arrayCopy
.
toLongArray
in interface LongCollection
public long[] toLongArray(long[] array, int startIndex)
If the array specified is null a new array is created. If the array specified is large enough, it will be modified. If the array is not large enough, a new array will be created containing the values from the specified array before the startIndex plus those from this collection.
This implementation uses arrayCopy
.
toLongArray
in interface LongCollection
array
- the array to add the elements to, null treated as empty arraystartIndex
- the position in the array to start setting elementsIndexOutOfBoundsException
- if the index is negativepublic void clear()
The collection/map will have a zero size after this method completes. This method is optional, throwing an UnsupportedOperationException if the collection/map cannot be cleared.
This implementation uses iterator()
.
clear
in interface Collection<Long>
clear
in interface PrimitiveCollectable<Long>
UnsupportedOperationException
- if method not supported by this collectionpublic boolean add(long value)
This implementation throws UnsupportedOperationException.
add
in interface LongCollection
value
- the value to add to this collectiontrue
if this collection was modified by this method callIllegalArgumentException
- if value is rejected by this collectionUnsupportedOperationException
- if not supported by this collectionpublic boolean addAll(long[] values)
This implementation uses add(long)
.
addAll
in interface LongCollection
values
- the values to add to this collection, null treated as empty arraytrue
if this collection was modified by this method callIllegalArgumentException
- if a value is rejected by this collectionUnsupportedOperationException
- if not supported by this collectionpublic boolean addAll(LongCollection values)
This implementation uses add(long)
.
addAll
in interface LongCollection
values
- the values to add to this collection, null treated as empty collectiontrue
if this collection was modified by this method callIllegalArgumentException
- if a value is rejected by this collectionUnsupportedOperationException
- if not supported by this collectionpublic boolean addAll(long startInclusive, long endInclusive)
The range is defined to be inclusive of the start and end. If the start is greater than the end then the range is equivalent to an empty collection.
This implementation uses add(long)
.
addAll
in interface LongCollection
startInclusive
- the inclusive range start valueendInclusive
- the inclusive range end valuetrue
if this collection was modified by this method callIllegalArgumentException
- if a value is rejected by this setUnsupportedOperationException
- if not supported by this setpublic boolean removeFirst(long value)
This implementation uses iterator().remove()
.
removeFirst
in interface LongCollection
value
- the value to removetrue
if this collection was modified by this method callUnsupportedOperationException
- if not supported by this collectionpublic boolean removeAll(long value)
This implementation uses iterator().remove()
.
removeAll
in interface LongCollection
value
- the value to removetrue
if this collection was modified by this method callUnsupportedOperationException
- if not supported by this collectionpublic boolean removeAll(long[] values)
This implementation uses iterator().remove()
.
removeAll
in interface LongCollection
values
- the values to remove from this collection, null treated as empty arraytrue
if this list was modified by this method callUnsupportedOperationException
- if not supported by this collectionpublic boolean removeAll(LongCollection values)
This implementation uses iterator().remove()
.
removeAll
in interface LongCollection
values
- the values to remove from this collection, null treated as empty collectiontrue
if this list was modified by this method callUnsupportedOperationException
- if not supported by this collectionpublic boolean removeAll(long startInclusive, long endInclusive)
The range is defined to be inclusive of the start and end. The elements removed are greater than or equal to the start and less than or equal to the end. Thus if the start is greater than the end then no elements are removed.
This method is optional, throwing an UnsupportedOperationException if the set cannot be changed.
This implementation uses iterator().remove()
.
removeAll
in interface LongCollection
startInclusive
- the inclusive range start valueendInclusive
- the inclusive range end valuetrue
if this collection was modified by this method callUnsupportedOperationException
- if not supported by this collectionpublic boolean retainAll(long[] values)
This implementation uses iterator().remove()
.
retainAll
in interface LongCollection
values
- the values to remove from this collection, null treated as empty arraytrue
if this list was modified by this method callUnsupportedOperationException
- if not supported by this collectionpublic boolean retainAll(LongCollection values)
This implementation uses iterator().remove()
.
retainAll
in interface LongCollection
values
- the values to retain in this collection, null treated as empty collectiontrue
if this collection was modified by this method callUnsupportedOperationException
- if not supported by this collectionpublic boolean retainAll(long startInclusive, long endInclusive)
The range is defined to be inclusive of the start and end. If the start is greater than the end then the range is equivalent to an empty collection.
This method is optional, throwing an UnsupportedOperationException if the set cannot be changed.
retainAll
in interface LongCollection
startInclusive
- the inclusive range start valueendInclusive
- the inclusive range end valuetrue
if this collection was modified by this method callUnsupportedOperationException
- if not supported by this collectionpublic boolean contains(Object value)
Long
value.
This implementation uses contains(long)
.
contains
in interface Collection<Long>
value
- the value to search fortrue
if the value is foundpublic boolean containsAll(Collection<?> coll)
This implementation uses containsAll(long[])
.
containsAll
in interface Collection<Long>
coll
- the collection of values to search fortrue
if all the values are foundpublic boolean containsAny(Collection<?> coll)
false
is returned.
This implementation uses containsAny(long[])
.
containsAny
in interface PrimitiveCollection<Long>
coll
- the collection of values to search fortrue
if at least one of the values is foundpublic Object[] toArray()
Long
.toArray
in interface Collection<Long>
Long
public <T> T[] toArray(T[] array)
toArray
in interface Collection<Long>
array
- the array to populateLong
public boolean add(Long value)
Long
value to this collection (optional operation).
This method is optional, throwing an UnsupportedOperationException if the collection cannot be added to.
This implementation uses add(long)
.
add
in interface Collection<Long>
value
- the value to add to this collectiontrue
if this collection was modified by this method callIllegalArgumentException
- if value is rejected by this collectionUnsupportedOperationException
- if not supported by this collectionpublic boolean addAll(Collection<? extends Long> coll)
Long
values to this collection (optional operation).
This method is optional, throwing an UnsupportedOperationException if the collection cannot be added to.
This implementation uses addAll(long[])
.
addAll
in interface Collection<Long>
coll
- the values to add to this collectiontrue
if this list was modified by this method callIndexOutOfBoundsException
- if the index is invalidClassCastException
- if any object is not Long
IllegalArgumentException
- if value is rejected by this collectionUnsupportedOperationException
- if not supported by this collectionpublic boolean remove(Object value)
Long
value from
this collection (optional operation).
This method is optional, throwing an UnsupportedOperationException if the collection cannot be removed from.
This implementation uses removeFirst(long)
.
remove
in interface Collection<Long>
value
- the value to removetrue
if this collection was modified by this method callUnsupportedOperationException
- if not supported by this collectionpublic boolean removeAll(Collection<?> coll)
Long
values from this collection (optional operation).
This method is optional, throwing an UnsupportedOperationException if the collection cannot be added to.
This implementation uses removeAll(long[])
.
removeAll
in interface Collection<Long>
coll
- the values to remove from this collectiontrue
if this list was modified by this method callUnsupportedOperationException
- if not supported by this collectionpublic boolean retainAll(Collection<?> coll)
Long
values, removing other
values (optional operation).
This method is optional, throwing an UnsupportedOperationException if the collection cannot be added to.
This implementation uses retainAll(long[])
.
retainAll
in interface Collection<Long>
coll
- the values to retain in this collectiontrue
if this list was modified by this method callUnsupportedOperationException
- if not supported by this collectionpublic String toString()
The format used is as per Collection
.
protected void arrayCopy(int fromIndex, long[] dest, int destIndex, int size)
fromIndex
- the index to start fromdest
- the destination arraydestIndex
- the destination start indexsize
- the number of items to copyprotected boolean isAddModifiable()
This implementation returns false.
protected boolean isRemoveModifiable()
This implementation returns false.
public boolean isModifiable()
isModifiable
in interface PrimitiveCollectable<Long>
isModifiable
in class AbstractPrimitiveCollectable<Long>
protected void checkAddModifiable()
protected void checkRemoveModifiable()
protected Long toObject(long value)
long
with an Object wrapper.value
- the primitive valueprotected boolean isToPrimitivePossible(Object value)
This implementation only allows non-null Long objects.
value
- the Object wrapperprotected long toPrimitive(Object value)
Long
to retrieve the primitive long
.
This implementation only allows non-null Long objects.
value
- the Object to convert to a primitiveNullPointerException
- if the value is null and this is unacceptableClassCastException
- if the object is of an unsuitable typeprotected long[] toPrimitiveArray(Collection<?> coll)
Collection
to retrieve the primitive long
.
This implementation only allows non-null Long objects.
coll
- the Collection to convert to primitivesNullPointerException
- if the value is null and this is unacceptableClassCastException
- if any object is of an unsuitable typeCopyright © 2005-2012 Joda.org. All Rights Reserved.