com.grafana.foundation.testdata.StringOrInt64Deserializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grafana-foundation-sdk Show documentation
Show all versions of grafana-foundation-sdk Show documentation
A set of tools, types and libraries for building and manipulating Grafana objects.
// Code generated - EDITING IS FUTILE. DO NOT EDIT.
package com.grafana.foundation.testdata;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonDeserializer;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import java.io.IOException;
public class StringOrInt64Deserializer extends JsonDeserializer {
@Override
public StringOrInt64 deserialize(JsonParser jp, DeserializationContext cxt) throws IOException {
ObjectMapper mapper = (ObjectMapper) jp.getCodec();
JsonNode root = mapper.readTree(jp);
StringOrInt64 stringOrInt64 = new StringOrInt64();
if (root.isTextual()) {
stringOrInt64.string = mapper.convertValue(root, new TypeReference<>() {});
}
else if (root.isObject()) {
stringOrInt64.int64 = mapper.convertValue(root, new TypeReference<>() {});
}
return stringOrInt64;
}
}