Here you can find the source of convertString(String s)
public static String convertString(String s)
//package com.java2s; //License from project: Open Source License public class Main { public static String convertString(String s) { if (s == null) { return ""; }// ww w . j a va2s . co m return s; } }