Here you can find the source of quote(final String s)
public static String quote(final String s)
//package com.java2s; /*/*from w w w .j a v a2s. co m*/ * @author Fabio Zadrozny * Created: June 2005 * License: Common Public License v1.0 */ public class Main { public static String quote(final String s) { if (s.startsWith("'")) { return s; } return "'" + s + "'"; } }