Uses of Class
cern.colt.list.ObjectArrayList
-
Packages that use ObjectArrayList Package Description cern.colt.buffer Fixed sized (non resizable) streaming buffers connected to a target objects to which data is automatically flushed upon buffer overflow.cern.colt.list Resizable lists holding objects or primitive data types such as int, double, etc.cern.colt.list.adapter List adapters that make Colt lists compatible with the JDK 1.2 Collections Framework.cern.colt.map Automatically growing and shrinking maps holding objects or primitive data types such as int, double, etc.cern.colt.matrix Matrix interfaces and factories; efficient and flexible dense and sparse 1, 2, 3 and d-dimensional matrices holding objects or primitive data types such as int, double, etc; Templated, fixed sized (not dynamically resizable); Also known as multi-dimensional arrays or Data Cubes.cern.colt.matrix.linalg Linear Algebraic matrix computations operating onDoubleMatrix2DandDoubleMatrix1D. -
-
Uses of ObjectArrayList in cern.colt.buffer
Fields in cern.colt.buffer declared as ObjectArrayList Modifier and Type Field Description protected ObjectArrayListObjectBuffer. listMethods in cern.colt.buffer with parameters of type ObjectArrayList Modifier and Type Method Description voidObjectBuffer. addAllOf(ObjectArrayList list)Adds all elements of the specified list to the receiver.voidObjectBufferConsumer. addAllOf(ObjectArrayList list)Adds all elements of the specified list to the receiver. -
Uses of ObjectArrayList in cern.colt.list
Methods in cern.colt.list that return ObjectArrayList Modifier and Type Method Description ObjectArrayListObjectArrayList. copy()Returns a copy of the receiver; callclone()and casts the result.ObjectArrayListObjectArrayList. elements(java.lang.Object[] elements)Sets the receiver's elements to be the specified array (not a copy of it).ObjectArrayListObjectArrayList. partFromTo(int from, int to)Returns a new list of the part of the receiver betweenfrom, inclusive, andto, inclusive.ObjectArrayListObjectArrayList. times(int times)Returns a list which is a concatenation oftimestimes the receiver.Methods in cern.colt.list with parameters of type ObjectArrayList Modifier and Type Method Description voidObjectArrayList. 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.list.adapter
Fields in cern.colt.list.adapter declared as ObjectArrayList Modifier and Type Field Description protected ObjectArrayListObjectListAdapter. contentConstructors in cern.colt.list.adapter with parameters of type ObjectArrayList Constructor Description ObjectListAdapter(ObjectArrayList content)Constructs a list backed by the specified content list. -
Uses of ObjectArrayList in cern.colt.map
Methods in cern.colt.map that return ObjectArrayList Modifier and Type Method Description ObjectArrayListAbstractIntObjectMap. values()Returns a list filled with all values contained in the receiver.ObjectArrayListAbstractLongObjectMap. values()Returns a list filled with all values contained in the receiver.Methods in cern.colt.map with parameters of type ObjectArrayList Modifier and Type Method Description voidAbstractIntObjectMap. 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 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. -
Uses of ObjectArrayList in cern.colt.matrix
Methods in cern.colt.matrix that return ObjectArrayList Modifier and Type Method Description ObjectArrayListObjectFactory1D. toList(ObjectMatrix1D values)Constructs a list from the given matrix.Methods in cern.colt.matrix with parameters of type ObjectArrayList Modifier and Type Method Description voidObjectMatrix1D. getNonZeros(IntArrayList indexList, ObjectArrayList valueList)Fills the coordinates and values of cells having non-zero values into the specified lists.voidObjectMatrix2D. getNonZeros(IntArrayList rowList, IntArrayList columnList, ObjectArrayList valueList)Fills the coordinates and values of cells having non-zero values into the specified lists.voidObjectMatrix3D. getNonZeros(IntArrayList sliceList, IntArrayList rowList, IntArrayList columnList, ObjectArrayList valueList)Fills the coordinates and values of cells having non-zero values into the specified lists.ObjectMatrix1DObjectFactory1D. make(ObjectArrayList values)Constructs a matrix from the values of the given list. -
Uses of ObjectArrayList in cern.colt.matrix.linalg
Methods in cern.colt.matrix.linalg with parameters of type ObjectArrayList Modifier and Type Method Description protected static java.lang.StringProperty. get(ObjectArrayList list, int index)
-