Java List to Double Array toDoubleList(double[] doubleArray)

Here you can find the source of toDoubleList(double[] doubleArray)

Description

Convert the given double array to a double list

License

Open Source License

Parameter

Parameter Description
doubleArray the double array to convert

Return

the list of doubles

Declaration

public static List<Double> toDoubleList(double[] doubleArray) 

Method Source Code

//package com.java2s;
/*/*  www  .j a v a2  s.c o m*/
 * Copyright (c) 2010 The Jackson Laboratory
 * 
 * This is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This software is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this software.  If not, see <http://www.gnu.org/licenses/>.
 */

import java.util.ArrayList;

import java.util.List;

public class Main {
    /**
     * Convert the given double array to a double list
     * @param doubleArray
     *          the double array to convert
     * @return
     *          the list of doubles
     */
    public static List<Double> toDoubleList(double[] doubleArray) {
        List<Double> doubleList = new ArrayList<Double>(doubleArray.length);
        for (double currDouble : doubleArray) {
            doubleList.add(currDouble);
        }
        return doubleList;
    }
}

Related

  1. toDoubleArray(List values)
  2. toDoubleArray(List stringArray)
  3. toDoubleArray(List values)
  4. toDoubleList(double[] array)
  5. toDoubleList(double[] array)
  6. toDoubleList(Double[] in)
  7. toDoubleList(final E[] array)
  8. toDoubleList(List values)
  9. toDoubleList(List list)