Here you can find the source of valueOf(String format, String value)
public static final double valueOf(String format, String value)
//package com.java2s; //License from project: Open Source License public class Main { public static final double valueOf(String format, String value) { double temp = Double.valueOf(value); return Double.valueOf(String.format(format, temp)); }/* www . jav a 2 s. co m*/ }