Java String to convertString(String s)

Here you can find the source of convertString(String s)

Description

convert String

License

Open Source License

Declaration

public static String convertString(String s) 

Method Source Code

//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;
    }
}

Related

  1. convertString(char firstCharacter, String value)
  2. convertString(Object obj, String nullTo)
  3. convertString(String label)
  4. convertString(String s, Class cls)
  5. convertString(String strValue)
  6. convertString(String value, Class type)
  7. convertString2Bytes(String str)