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

com.grafana.foundation.testdata.StringOrInt64Deserializer Maven / Gradle / Ivy

There is a newer version: 11.3.0-1730898216
Show newest version
// 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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy