All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.unlogged.runner.JsonTreeUtils Maven / Gradle / Ivy

There is a newer version: 0.7.6
Show newest version
package io.unlogged.runner;

import com.fasterxml.jackson.databind.JsonNode;

public class JsonTreeUtils {

    public static JsonNode getValueFromJsonNode(JsonNode objectNode, String selectedKey) {
        if (selectedKey == null || selectedKey.equals("/")) {
            selectedKey = "";
        }
        return objectNode.at(selectedKey);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy