Here you can find the source of convertDouble(Object param)
public static double convertDouble(Object param)
//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 }