Here you can find the source of castToString(Object value)
public static String castToString(Object value)
//package com.java2s; //License from project: Open Source License public class Main { public static String castToString(Object value) { if (value == null) { return null; }// ww w . ja v a 2 s .c o m return value.toString(); } }