Here you can find the source of asDouble(Object value)
public static double asDouble(Object value)
//package com.java2s; //License from project: Apache License public class Main { public static double asDouble(Object value) { return Double.valueOf(value.toString()); }/* w ww. j av a2 s. c o m*/ }