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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy