Here you can find the source of toString(Object val)
public static String toString(Object val)
//package com.java2s; //License from project: Open Source License import org.mozilla.javascript.ScriptRuntime; public class Main { public static String toString(Object val) { return ScriptRuntime.toString(val); }// w ww .j a v a2s . co m }