Here you can find the source of quote(String text)
public static String quote(String text)
//package com.java2s; public class Main { private static final char SINGLE_QUOTE = '\''; public static String quote(String text) { StringBuffer buffer = new StringBuffer(); buffer.append(SINGLE_QUOTE);//from w ww .j a v a2s . c om buffer.append(text); buffer.append(SINGLE_QUOTE); return buffer.toString(); } }