com.grafana.foundation.common.BoolOrUint32Deserializer 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.common;
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 BoolOrUint32Deserializer extends JsonDeserializer {
@Override
public BoolOrUint32 deserialize(JsonParser jp, DeserializationContext cxt) throws IOException {
ObjectMapper mapper = (ObjectMapper) jp.getCodec();
JsonNode root = mapper.readTree(jp);
BoolOrUint32 boolOrUint32 = new BoolOrUint32();
if (root.isBoolean()) {
boolOrUint32.bool = mapper.convertValue(root, new TypeReference<>() {});
}
else if (root.isInt()) {
boolOrUint32.uint32 = mapper.convertValue(root, new TypeReference<>() {});
}
return boolOrUint32;
}
}