117118119120121122123124
public static <T> T decodeValue(String str, Class<?> clazz) throws DecodeException { try { return (T)mapper.readValue(str, clazz); } catch (Exception e) { throw new DecodeException("Failed to decode:" + e.getMessage()); } }