I have a com.fasterxml JsonNode object with some data. I need to do some manipulation on its data. I googled for answer but didn\'t got it properly. Can you please
com.fasterxml JsonNode
You can convert a JsonNode in an ObjectNode in this simple way:
JsonNode
ObjectNode
ObjectNode objectNode = jsonNode.deepCopy();
Available from Jackson 2.0 and tested with Jackson 2.4.0