Java Double Convert to convertDouble(Object param)

Here you can find the source of convertDouble(Object param)

Description

convert Double

License

Open Source License

Declaration

public static double convertDouble(Object param) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static double convertDouble(Object param) {
        return new Double(param.toString());
    }//from   ww w.j a v  a2s. c om
}

Related

  1. convertDouble(String str)
  2. convertDouble(String str, double defaults)
  3. convertDouble2double(final Double[] pArray)
  4. convertDoubleArrayToString(double[] value, String separator)