Here you can find the source of castDouble(Object o)
Parameter | Description |
---|---|
o | a parameter |
public static double castDouble(Object o)
//package com.java2s; public class Main { /**/*from w w w.ja va 2 s.c om*/ * @param o * @return */ public static double castDouble(Object o) { return Double.valueOf(o.toString()); } }