Uses of Class
loci.poi.util.DoubleList
-
Packages that use DoubleList Package Description loci.poi.util Top-level util package are classes that are useful throughout the project. -
-
Uses of DoubleList in loci.poi.util
Methods in loci.poi.util with parameters of type DoubleList Modifier and Type Method Description boolean
DoubleList. addAll(int index, DoubleList c)
Inserts all of the elements in the specified collection into this list at the specified position.boolean
DoubleList. addAll(DoubleList c)
Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator.boolean
DoubleList. containsAll(DoubleList c)
Returns true if this list contains all of the elements of the specified collection.boolean
DoubleList. removeAll(DoubleList c)
Removes from this list all the elements that are contained in the specified collectionboolean
DoubleList. retainAll(DoubleList c)
Retains only the elements in this list that are contained in the specified collection.Constructors in loci.poi.util with parameters of type DoubleList Constructor Description DoubleList(DoubleList list)
create a copy of an existing DoubleList
-