public static List fromJson(String in_string, Class in_type) throws JsonParseException, JsonMappingException, IOException{
return new ObjectMapper().readValue(in_string, new TypeReference>() {});
}
Compiles on my computer.
Note that I haven't tested it, though.