return (T)convert(context, parseInternal(context, new ReaderInputSource(in)), type);
}
@SuppressWarnings("unchecked")
public <T> T parse(Reader reader) throws IOException, JSONException {
return (T)parseInternal(new Context(), new ReaderInputSource(reader));
}