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