Here you can find the source of convertString(String strValue)
public static String convertString(String strValue)
//package com.java2s; //License from project: Open Source License public class Main { public static String convertString(String strValue) { return (strValue == null || strValue.equals("")) ? "" : strValue; }/*w w w . j a v a 2 s . co m*/ public static String convertString(Object strValue) { return (strValue == null || strValue.equals("")) ? "" : strValue.toString(); } }