Here you can find the source of convertObjectToString(Object object)
private static String convertObjectToString(Object object)
//package com.java2s; //License from project: Open Source License public class Main { private static String convertObjectToString(Object object) { return object == null ? "-" : object.toString(); }//from ww w . j a v a2 s .c o m }