Uses of Class
cern.colt.list.ObjectArrayList
Packages that use ObjectArrayList
-
Uses of ObjectArrayList in cern.colt.list
Methods in cern.colt.list that return ObjectArrayListModifier and TypeMethodDescriptionObjectArrayList.copy()Returns a copy of the receiver; callclone()and casts the result.Sets the receiver's elements to be the specified array (not a copy of it).ObjectArrayList.partFromTo(int from, int to) Returns a new list of the part of the receiver betweenfrom, inclusive, andto, inclusive.ObjectArrayList.times(int times) Returns a list which is a concatenation oftimestimes the receiver.Methods in cern.colt.list with parameters of type ObjectArrayListModifier and TypeMethodDescriptionvoidObjectArrayList.addAllOfFromTo(ObjectArrayList other, int from, int to) Appends the part of the specified list betweenfrom(inclusive) andto(inclusive) to the receiver.voidObjectArrayList.beforeInsertAllOfFromTo(int index, ObjectArrayList other, int from, int to) Inserts the part of the specified list betweenotherFrom(inclusive) andotherTo(inclusive) before the specified position into the receiver.booleanObjectArrayList.removeAll(ObjectArrayList other, boolean testForEquality) Removes from the receiver all elements that are contained in the specified list.voidObjectArrayList.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.voidObjectArrayList.replaceFromToWithFromTo(int from, int to, ObjectArrayList other, int otherFrom, int otherTo) Replaces the part betweenfrom(inclusive) andto(inclusive) with the other list's part betweenotherFromandotherTo.booleanObjectArrayList.retainAll(ObjectArrayList other, boolean testForEquality) Retains (keeps) only the elements in the receiver that are contained in the specified other list. -
Uses of ObjectArrayList in cern.colt.map
Methods in cern.colt.map that return ObjectArrayListModifier and TypeMethodDescriptionAbstractIntObjectMap.values()Returns a list filled with all values contained in the receiver.AbstractLongObjectMap.values()Returns a list filled with all values contained in the receiver.Methods in cern.colt.map with parameters of type ObjectArrayListModifier and TypeMethodDescriptionvoidAbstractIntObjectMap.pairsMatching(IntObjectProcedure condition, IntArrayList keyList, ObjectArrayList valueList) Fills all pairs satisfying a given condition into the specified lists.voidAbstractLongObjectMap.pairsMatching(LongObjectProcedure condition, LongArrayList keyList, ObjectArrayList valueList) Fills all pairs satisfying a given condition into the specified lists.voidOpenIntObjectHashMap.pairsMatching(IntObjectProcedure condition, IntArrayList keyList, ObjectArrayList valueList) Fills all pairs satisfying a given condition into the specified lists.voidOpenLongObjectHashMap.pairsMatching(LongObjectProcedure condition, LongArrayList keyList, ObjectArrayList valueList) Fills all pairs satisfying a given condition into the specified lists.voidAbstractIntObjectMap.pairsSortedByKey(IntArrayList keyList, ObjectArrayList valueList) Fills all keys and values sorted ascending by key into the specified lists.voidAbstractLongObjectMap.pairsSortedByKey(LongArrayList keyList, ObjectArrayList valueList) Fills all keys and values sorted ascending by key into the specified lists.voidAbstractIntObjectMap.pairsSortedByValue(IntArrayList keyList, ObjectArrayList valueList) Fills all keys and values sorted ascending by value according to natural ordering into the specified lists.voidAbstractLongObjectMap.pairsSortedByValue(LongArrayList keyList, ObjectArrayList valueList) Fills all keys and values sorted ascending by value according to natural ordering into the specified lists.voidAbstractIntObjectMap.values(ObjectArrayList list) Fills all values contained in the receiver into the specified list.voidAbstractLongObjectMap.values(ObjectArrayList<T> list) Fills all values contained in the receiver into the specified list.voidOpenIntObjectHashMap.values(ObjectArrayList list) Fills all values contained in the receiver into the specified list.voidOpenLongObjectHashMap.values(ObjectArrayList list) Fills all values contained in the receiver into the specified list.