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) { if (value == null) { return -1; } else {//from ww w . ja v a2 s .c o m return Double.parseDouble(value.toString()); } } }