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

com.grafana.foundation.common.BoolOrUint32 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.common;

import com.fasterxml.jackson.annotation.JsonUnwrapped;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.ObjectWriter;
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;

@JsonDeserialize(using = BoolOrUint32Deserializer.class)
@JsonSerialize(using = BoolOrUint32Serializer.class)
public class BoolOrUint32 {
    @JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
    @JsonUnwrapped
    protected Boolean bool;
    @JsonSerialize(include = JsonSerialize.Inclusion.NON_NULL)
    @JsonUnwrapped
    protected Integer uint32;
    protected BoolOrUint32() {}
    public static BoolOrUint32 createBool(Boolean bool) {
        BoolOrUint32 boolOrUint32 = new BoolOrUint32();
        boolOrUint32.bool = bool;
        return boolOrUint32;
    }
    public static BoolOrUint32 createUint32(Integer uint32) {
        BoolOrUint32 boolOrUint32 = new BoolOrUint32();
        boolOrUint32.uint32 = uint32;
        return boolOrUint32;
    }
    
    public String toJSON() throws JsonProcessingException {
        if (bool != null) {
            ObjectWriter ow = new ObjectMapper().writer().withDefaultPrettyPrinter();
            return ow.writeValueAsString(bool);
        }
        if (uint32 != null) {
            ObjectWriter ow = new ObjectMapper().writer().withDefaultPrettyPrinter();
            return ow.writeValueAsString(uint32);
        }
        
        return null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy