Here you can find the source of numberToJson(Number number)
public static String numberToJson(Number number)
//package com.java2s; //License from project: Apache License public class Main { public static String numberToJson(Number number) { return number.toString(); }//from w ww . j a v a2 s . c om }