Java Array to List toList(double[] array)

Here you can find the source of toList(double[] array)

Description

to List

License

Open Source License

Declaration

public static ArrayList<Double> toList(double[] array) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Breakout Cave Survey Visualizer/*  w  w  w . j  a v  a2s.  c om*/
 *
 * Copyright (C) 2014 James Edwards
 *
 * jedwards8 at fastmail dot fm
 *
 * This program 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 2 of the License, or
 * (at your option) any later version.
 *
 * This program 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 program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 *******************************************************************************/

import java.util.ArrayList;

public class Main {
    public static ArrayList<Double> toList(double[] array) {
        ArrayList<Double> result = new ArrayList<Double>();
        for (double d : array) {
            result.add(d);
        }
        return result;
    }
}

Related

  1. toList(boolean[] array)
  2. toList(boolean[] array)
  3. toList(Boolean[] list)
  4. toList(byte[] array)
  5. toList(byte[] array)
  6. toList(double[] array)
  7. toList(E... e)
  8. toList(E... values)
  9. toList(E[] array, int fromIndex, int toIndex)