| Package | Description |
|---|---|
| cern.colt.list | |
| cern.colt.map |
| Modifier and Type | Method and Description |
|---|---|
ObjectArrayList |
ObjectArrayList.copy()
Returns a copy of the receiver; call
clone() and casts the
result. |
ObjectArrayList |
ObjectArrayList.elements(T[] elements)
Sets the receiver's elements to be the specified array (not a copy of
it).
|
ObjectArrayList |
ObjectArrayList.partFromTo(int from,
int to)
Returns a new list of the part of the receiver between
from,
inclusive, and to, inclusive. |
ObjectArrayList |
ObjectArrayList.times(int times)
Returns a list which is a concatenation of
times times the
receiver. |
| Modifier and Type | Method and Description |
|---|---|
void |
ObjectArrayList.addAllOfFromTo(ObjectArrayList other,
int from,
int to)
Appends the part of the specified list between
from
(inclusive) and to (inclusive) to the receiver. |
void |
ObjectArrayList.beforeInsertAllOfFromTo(int index,
ObjectArrayList other,
int from,
int to)
Inserts the part of the specified list between
otherFrom
(inclusive) and otherTo (inclusive) before the specified
position into the receiver. |
boolean |
ObjectArrayList.removeAll(ObjectArrayList other,
boolean testForEquality)
Removes from the receiver all elements that are contained in the
specified list.
|
void |
ObjectArrayList.replaceFromToWithFrom(int from,
int to,
ObjectArrayList other,
int otherFrom)
Replaces a number of elements in the receiver with the same number of
elements of another list.
|
void |
ObjectArrayList.replaceFromToWithFromTo(int from,
int to,
ObjectArrayList other,
int otherFrom,
int otherTo)
Replaces the part between
from (inclusive) and
to (inclusive) with the other list's part between
otherFrom and otherTo. |
boolean |
ObjectArrayList.retainAll(ObjectArrayList other,
boolean testForEquality)
Retains (keeps) only the elements in the receiver that are contained in
the specified other list.
|
| Modifier and Type | Method and Description |
|---|---|
ObjectArrayList<T> |
AbstractLongObjectMap.values()
Returns a list filled with all values contained in the receiver.
|
ObjectArrayList<T> |
AbstractIntObjectMap.values()
Returns a list filled with all values contained in the receiver.
|
| Modifier and Type | Method and Description |
|---|---|
void |
OpenIntObjectHashMap.pairsMatching(IntObjectProcedure condition,
IntArrayList keyList,
ObjectArrayList valueList)
Fills all pairs satisfying a given condition into the specified lists.
|
void |
AbstractIntObjectMap.pairsMatching(IntObjectProcedure condition,
IntArrayList keyList,
ObjectArrayList valueList)
Fills all pairs satisfying a given condition into the specified lists.
|
void |
OpenLongObjectHashMap.pairsMatching(LongObjectProcedure condition,
LongArrayList keyList,
ObjectArrayList valueList)
Fills all pairs satisfying a given condition into the specified lists.
|
void |
AbstractLongObjectMap.pairsMatching(LongObjectProcedure condition,
LongArrayList keyList,
ObjectArrayList valueList)
Fills all pairs satisfying a given condition into the specified lists.
|
void |
AbstractIntObjectMap.pairsSortedByKey(IntArrayList keyList,
ObjectArrayList valueList)
Fills all keys and values sorted ascending by key into the
specified lists.
|
void |
AbstractLongObjectMap.pairsSortedByKey(LongArrayList keyList,
ObjectArrayList valueList)
Fills all keys and values sorted ascending by key into the
specified lists.
|
void |
AbstractIntObjectMap.pairsSortedByValue(IntArrayList keyList,
ObjectArrayList valueList)
Fills all keys and values sorted ascending by value according to
natural ordering into the specified lists.
|
void |
AbstractLongObjectMap.pairsSortedByValue(LongArrayList keyList,
ObjectArrayList valueList)
Fills all keys and values sorted ascending by value according to
natural ordering into the specified lists.
|
void |
OpenIntObjectHashMap.values(ObjectArrayList list)
Fills all values contained in the receiver into the specified list.
|
void |
OpenLongObjectHashMap.values(ObjectArrayList list)
Fills all values contained in the receiver into the specified list.
|
void |
AbstractIntObjectMap.values(ObjectArrayList list)
Fills all values contained in the receiver into the specified list.
|
void |
AbstractLongObjectMap.values(ObjectArrayList<T> list)
Fills all values contained in the receiver into the specified list.
|
Copyright © 2004–2017 CodeLutin. All rights reserved.