Exemplo n.º 1
0
 public RawData postSep(String sep) {
   String result = "";
   if (null != obj) {
     result += S.escape(obj);
   }
   return RawData.valueOf(result + (isLast ? "" : sep));
 }
Exemplo n.º 2
0
 public RawData preSep(String sep) {
   String result = "";
   if (null != obj) {
     result += S.escape(obj);
   }
   return RawData.valueOf(result);
 }