Here you can find the source of convertObjectToString(Object obj)
Parameter | Description |
---|---|
obj | - the given value to convert. |
static String convertObjectToString(Object obj)
//package com.java2s; public class Main { /**/*from w w w . j a v a 2s. c o m*/ * Converts Object to String. * * @param obj * - the given value to convert. * @return converted value. */ static String convertObjectToString(Object obj) { return obj == null ? null : obj.toString(); } }