com.grafana.foundation.common.ScalarDimensionConfig 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.JsonProperty;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.ObjectWriter;
import com.fasterxml.jackson.annotation.JsonInclude;
public class ScalarDimensionConfig {
@JsonProperty("min")
public Double min;
@JsonProperty("max")
public Double max;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty("fixed")
public Double fixed;
// fixed: T -- will be added by each element
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty("field")
public String field;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty("mode")
public ScalarDimensionMode mode;
public String toJSON() throws JsonProcessingException {
ObjectWriter ow = new ObjectMapper().writer().withDefaultPrettyPrinter();
return ow.writeValueAsString(this);
}
public static class Builder implements com.grafana.foundation.cog.Builder {
protected final ScalarDimensionConfig internal;
public Builder() {
this.internal = new ScalarDimensionConfig();
}
public Builder min(Double min) {
this.internal.min = min;
return this;
}
public Builder max(Double max) {
this.internal.max = max;
return this;
}
public Builder fixed(Double fixed) {
this.internal.fixed = fixed;
return this;
}
public Builder field(String field) {
this.internal.field = field;
return this;
}
public Builder mode(ScalarDimensionMode mode) {
this.internal.mode = mode;
return this;
}
public ScalarDimensionConfig build() {
return this.internal;
}
}
}