![JAR search and dependency download from the Maven repository](/logo.png)
io.neow3j.protocol.deserializer.KeepAsJsonDeserialzier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
neow3j: Java/Kotlin/Android Development Toolkit for the Neo Blockchain
package io.neow3j.protocol.deserializer;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.TreeNode;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonDeserializer;
import java.io.IOException;
public class KeepAsJsonDeserialzier extends JsonDeserializer {
@Override
public String deserialize(JsonParser jp, DeserializationContext ctxt) throws IOException {
TreeNode tree = jp.getCodec().readTree(jp);
return tree.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy