Here you can find the source of quote(String s)
public static String quote(String s)
//package com.java2s; public class Main { public static String quote(String s) { return isEmpty(s) ? "" : '"' + s + '"'; }//from ww w . j ava 2s. c o m public static boolean isEmpty(String s) { return s == null || s.isEmpty(); } }