Here you can find the source of doubleQuote(String s)
public static String doubleQuote(String s)
//package com.java2s; public class Main { public static String doubleQuote(String s) { return "\"" + s + "\""; }//from ww w . j av a 2 s. co m }