127128129130131132133134135
/** * Uses the String data format supporting encoding using given charset */ public T string(String charset) { StringDataFormat sdf = new StringDataFormat(); sdf.setCharset(charset); return dataFormat(sdf); }
454455456457458459460461462
468469470471472473474475476