sS str(O o) { ret o == null ? "null" : o.toString(); } sS str(char[] c) { ret c == null ? "null" : new String(c); } sS str(char[] c, int offset, int count) { ret new String(c, offset, count); }