Method mstring = getMethod(methodprefix + "String", clazz);
Method mstream = getMethod(methodprefix, clazz, OutputStream.class);
Method mwriter = getMethod(methodprefix, clazz, Writer.class);
String[] descn = new String[] {"Raw", "Compact", "Pretty", "TrimFullWhite"};
Format ftrimfw = Format.getPrettyFormat();
ftrimfw.setTextMode(TextMode.TRIM_FULL_WHITE);
Format[] formats = new Format[] {
getFormat(setup, Format.getRawFormat()),
getFormat(setup, Format.getCompactFormat()),
getFormat(setup, Format.getPrettyFormat()),
getFormat(setup, ftrimfw)};