public static T update()

in paimon-web-server/src/main/java/org/apache/paimon/web/server/util/ObjectMapperUtils.java [159:165]


    public static <T> T update(T rawValue, String newProperty) {
        try {
            return MAPPER.readerForUpdating(rawValue).readValue(newProperty);
        } catch (IOException e) {
            throw wrapException(e);
        }
    }