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

com.grafana.foundation.heatmap.PanelBuilder 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.heatmap;

import com.grafana.foundation.dashboard.Panel;
import java.util.List;
import com.grafana.foundation.cog.variants.Dataquery;
import java.util.LinkedList;
import com.grafana.foundation.dashboard.DataSourceRef;
import com.grafana.foundation.dashboard.GridPos;
import com.grafana.foundation.dashboard.DashboardLink;
import com.grafana.foundation.dashboard.PanelRepeatDirection;
import com.grafana.foundation.dashboard.DataTransformerConfig;
import com.grafana.foundation.dashboard.LibraryPanelRef;
import com.grafana.foundation.dashboard.ValueMapping;
import com.grafana.foundation.dashboard.ThresholdsConfig;
import com.grafana.foundation.dashboard.FieldColor;
import com.grafana.foundation.dashboard.DashboardFieldConfigSourceOverrides;
import com.grafana.foundation.common.HeatmapCalculationOptions;
import com.grafana.foundation.common.VisibilityMode;
import com.grafana.foundation.common.TooltipDisplayMode;
import com.grafana.foundation.common.ScaleDistributionConfig;
import com.grafana.foundation.common.HideSeriesConfig;

public class PanelBuilder implements com.grafana.foundation.cog.Builder {
    private Panel internal;

    public PanelBuilder() {
        this.internal = new Panel();
    this.internal.type = "heatmap";
        this.transparent(false);
        this.height(9);
        this.span(12);
        this.calculate(false);
        HeatmapColorOptions heatmapColorOptionsResource = new HeatmapColorOptions();
        heatmapColorOptionsResource.scheme = "Oranges";
        heatmapColorOptionsResource.fill = "dark-orange";
        heatmapColorOptionsResource.exponent = 0.5f;
        heatmapColorOptionsResource.steps = 64L;
        heatmapColorOptionsResource.reverse = false;
        this.color(heatmapColorOptionsResource);
        FilterValueRange filterValueRangeResource = new FilterValueRange();
        filterValueRangeResource.le = 0.0f;
        this.filterValues(filterValueRangeResource);
        this.showValue(VisibilityMode.AUTO);
        this.cellGap(1);
        this.exemplarsColor("rgba(255,0,255,0.7)");
    }
    public PanelBuilder id(Integer id) {
    this.internal.id = id;
        return this;
    }
    public PanelBuilder targets(com.grafana.foundation.cog.Builder> targets) {
    this.internal.targets = targets.build();
        return this;
    }
    public PanelBuilder withTarget(com.grafana.foundation.cog.Builder targets) {
		if (this.internal.targets == null) {
			this.internal.targets = new LinkedList<>();
		}
    this.internal.targets.add(targets.build());
        return this;
    }
    public PanelBuilder title(String title) {
    this.internal.title = title;
        return this;
    }
    public PanelBuilder description(String description) {
    this.internal.description = description;
        return this;
    }
    public PanelBuilder transparent(Boolean transparent) {
    this.internal.transparent = transparent;
        return this;
    }
    public PanelBuilder datasource(DataSourceRef datasource) {
    this.internal.datasource = datasource;
        return this;
    }
    public PanelBuilder gridPos(GridPos gridPos) {
    this.internal.gridPos = gridPos;
        return this;
    }
    public PanelBuilder height(Integer h) {
        if (!(h > 0)) {
            throw new IllegalArgumentException("h must be > 0");
        }
		if (this.internal.gridPos == null) {
			this.internal.gridPos = new com.grafana.foundation.dashboard.GridPos();
		}
    this.internal.gridPos.h = h;
        return this;
    }
    public PanelBuilder span(Integer w) {
        if (!(w > 0)) {
            throw new IllegalArgumentException("w must be > 0");
        }
        if (!(w <= 24)) {
            throw new IllegalArgumentException("w must be <= 24");
        }
		if (this.internal.gridPos == null) {
			this.internal.gridPos = new com.grafana.foundation.dashboard.GridPos();
		}
    this.internal.gridPos.w = w;
        return this;
    }
    public PanelBuilder links(com.grafana.foundation.cog.Builder> links) {
    this.internal.links = links.build();
        return this;
    }
    public PanelBuilder repeat(String repeat) {
    this.internal.repeat = repeat;
        return this;
    }
    public PanelBuilder repeatDirection(PanelRepeatDirection repeatDirection) {
    this.internal.repeatDirection = repeatDirection;
        return this;
    }
    public PanelBuilder maxPerRow(Double maxPerRow) {
    this.internal.maxPerRow = maxPerRow;
        return this;
    }
    public PanelBuilder maxDataPoints(Double maxDataPoints) {
    this.internal.maxDataPoints = maxDataPoints;
        return this;
    }
    public PanelBuilder transformations(List transformations) {
    this.internal.transformations = transformations;
        return this;
    }
    public PanelBuilder withTransformation(DataTransformerConfig transformations) {
		if (this.internal.transformations == null) {
			this.internal.transformations = new LinkedList<>();
		}
    this.internal.transformations.add(transformations);
        return this;
    }
    public PanelBuilder interval(String interval) {
    this.internal.interval = interval;
        return this;
    }
    public PanelBuilder timeFrom(String timeFrom) {
    this.internal.timeFrom = timeFrom;
        return this;
    }
    public PanelBuilder timeShift(String timeShift) {
    this.internal.timeShift = timeShift;
        return this;
    }
    public PanelBuilder hideTimeOverride(Boolean hideTimeOverride) {
    this.internal.hideTimeOverride = hideTimeOverride;
        return this;
    }
    public PanelBuilder libraryPanel(LibraryPanelRef libraryPanel) {
    this.internal.libraryPanel = libraryPanel;
        return this;
    }
    public PanelBuilder displayName(String displayName) {
		if (this.internal.fieldConfig == null) {
			this.internal.fieldConfig = new com.grafana.foundation.dashboard.FieldConfigSource();
		}
		if (this.internal.fieldConfig.defaults == null) {
			this.internal.fieldConfig.defaults = new com.grafana.foundation.dashboard.FieldConfig();
		}
    this.internal.fieldConfig.defaults.displayName = displayName;
        return this;
    }
    public PanelBuilder unit(String unit) {
		if (this.internal.fieldConfig == null) {
			this.internal.fieldConfig = new com.grafana.foundation.dashboard.FieldConfigSource();
		}
		if (this.internal.fieldConfig.defaults == null) {
			this.internal.fieldConfig.defaults = new com.grafana.foundation.dashboard.FieldConfig();
		}
    this.internal.fieldConfig.defaults.unit = unit;
        return this;
    }
    public PanelBuilder decimals(Double decimals) {
		if (this.internal.fieldConfig == null) {
			this.internal.fieldConfig = new com.grafana.foundation.dashboard.FieldConfigSource();
		}
		if (this.internal.fieldConfig.defaults == null) {
			this.internal.fieldConfig.defaults = new com.grafana.foundation.dashboard.FieldConfig();
		}
    this.internal.fieldConfig.defaults.decimals = decimals;
        return this;
    }
    public PanelBuilder min(Double min) {
		if (this.internal.fieldConfig == null) {
			this.internal.fieldConfig = new com.grafana.foundation.dashboard.FieldConfigSource();
		}
		if (this.internal.fieldConfig.defaults == null) {
			this.internal.fieldConfig.defaults = new com.grafana.foundation.dashboard.FieldConfig();
		}
    this.internal.fieldConfig.defaults.min = min;
        return this;
    }
    public PanelBuilder max(Double max) {
		if (this.internal.fieldConfig == null) {
			this.internal.fieldConfig = new com.grafana.foundation.dashboard.FieldConfigSource();
		}
		if (this.internal.fieldConfig.defaults == null) {
			this.internal.fieldConfig.defaults = new com.grafana.foundation.dashboard.FieldConfig();
		}
    this.internal.fieldConfig.defaults.max = max;
        return this;
    }
    public PanelBuilder mappings(List mappings) {
		if (this.internal.fieldConfig == null) {
			this.internal.fieldConfig = new com.grafana.foundation.dashboard.FieldConfigSource();
		}
		if (this.internal.fieldConfig.defaults == null) {
			this.internal.fieldConfig.defaults = new com.grafana.foundation.dashboard.FieldConfig();
		}
    this.internal.fieldConfig.defaults.mappings = mappings;
        return this;
    }
    public PanelBuilder thresholds(com.grafana.foundation.cog.Builder thresholds) {
		if (this.internal.fieldConfig == null) {
			this.internal.fieldConfig = new com.grafana.foundation.dashboard.FieldConfigSource();
		}
		if (this.internal.fieldConfig.defaults == null) {
			this.internal.fieldConfig.defaults = new com.grafana.foundation.dashboard.FieldConfig();
		}
    this.internal.fieldConfig.defaults.thresholds = thresholds.build();
        return this;
    }
    public PanelBuilder colorScheme(com.grafana.foundation.cog.Builder color) {
		if (this.internal.fieldConfig == null) {
			this.internal.fieldConfig = new com.grafana.foundation.dashboard.FieldConfigSource();
		}
		if (this.internal.fieldConfig.defaults == null) {
			this.internal.fieldConfig.defaults = new com.grafana.foundation.dashboard.FieldConfig();
		}
    this.internal.fieldConfig.defaults.color = color.build();
        return this;
    }
    public PanelBuilder noValue(String noValue) {
		if (this.internal.fieldConfig == null) {
			this.internal.fieldConfig = new com.grafana.foundation.dashboard.FieldConfigSource();
		}
		if (this.internal.fieldConfig.defaults == null) {
			this.internal.fieldConfig.defaults = new com.grafana.foundation.dashboard.FieldConfig();
		}
    this.internal.fieldConfig.defaults.noValue = noValue;
        return this;
    }
    public PanelBuilder overrides(com.grafana.foundation.cog.Builder> overrides) {
		if (this.internal.fieldConfig == null) {
			this.internal.fieldConfig = new com.grafana.foundation.dashboard.FieldConfigSource();
		}
    this.internal.fieldConfig.overrides = overrides.build();
        return this;
    }
    public PanelBuilder withOverride(com.grafana.foundation.cog.Builder overrides) {
		if (this.internal.fieldConfig == null) {
			this.internal.fieldConfig = new com.grafana.foundation.dashboard.FieldConfigSource();
		}
		if (this.internal.fieldConfig.overrides == null) {
			this.internal.fieldConfig.overrides = new LinkedList<>();
		}
    this.internal.fieldConfig.overrides.add(overrides.build());
        return this;
    }
    public PanelBuilder calculate(Boolean calculate) {
		if (this.internal.options == null) {
			this.internal.options = new com.grafana.foundation.heatmap.Options();
		}
        com.grafana.foundation.heatmap.Options optionsResource = (com.grafana.foundation.heatmap.Options) this.internal.options;
        optionsResource.calculate = calculate;
    this.internal.options = optionsResource;
        return this;
    }
    public PanelBuilder calculation(com.grafana.foundation.cog.Builder calculation) {
		if (this.internal.options == null) {
			this.internal.options = new com.grafana.foundation.heatmap.Options();
		}
        com.grafana.foundation.heatmap.Options optionsResource = (com.grafana.foundation.heatmap.Options) this.internal.options;
        optionsResource.calculation = calculation.build();
    this.internal.options = optionsResource;
        return this;
    }
    public PanelBuilder color(HeatmapColorOptions color) {
		if (this.internal.options == null) {
			this.internal.options = new com.grafana.foundation.heatmap.Options();
		}
        com.grafana.foundation.heatmap.Options optionsResource = (com.grafana.foundation.heatmap.Options) this.internal.options;
        optionsResource.color = color;
    this.internal.options = optionsResource;
        return this;
    }
    public PanelBuilder filterValues(FilterValueRange filterValues) {
		if (this.internal.options == null) {
			this.internal.options = new com.grafana.foundation.heatmap.Options();
		}
        com.grafana.foundation.heatmap.Options optionsResource = (com.grafana.foundation.heatmap.Options) this.internal.options;
        optionsResource.filterValues = filterValues;
    this.internal.options = optionsResource;
        return this;
    }
    public PanelBuilder rowsFrame(RowsHeatmapOptions rowsFrame) {
		if (this.internal.options == null) {
			this.internal.options = new com.grafana.foundation.heatmap.Options();
		}
        com.grafana.foundation.heatmap.Options optionsResource = (com.grafana.foundation.heatmap.Options) this.internal.options;
        optionsResource.rowsFrame = rowsFrame;
    this.internal.options = optionsResource;
        return this;
    }
    public PanelBuilder showValue(VisibilityMode showValue) {
		if (this.internal.options == null) {
			this.internal.options = new com.grafana.foundation.heatmap.Options();
		}
        com.grafana.foundation.heatmap.Options optionsResource = (com.grafana.foundation.heatmap.Options) this.internal.options;
        optionsResource.showValue = showValue;
    this.internal.options = optionsResource;
        return this;
    }
    public PanelBuilder cellGap(Integer cellGap) {
        if (!(cellGap <= 25)) {
            throw new IllegalArgumentException("cellGap must be <= 25");
        }
		if (this.internal.options == null) {
			this.internal.options = new com.grafana.foundation.heatmap.Options();
		}
        com.grafana.foundation.heatmap.Options optionsResource = (com.grafana.foundation.heatmap.Options) this.internal.options;
        optionsResource.cellGap = cellGap;
    this.internal.options = optionsResource;
        return this;
    }
    public PanelBuilder cellRadius(Float cellRadius) {
		if (this.internal.options == null) {
			this.internal.options = new com.grafana.foundation.heatmap.Options();
		}
        com.grafana.foundation.heatmap.Options optionsResource = (com.grafana.foundation.heatmap.Options) this.internal.options;
        optionsResource.cellRadius = cellRadius;
    this.internal.options = optionsResource;
        return this;
    }
    public PanelBuilder cellValues(CellValues cellValues) {
		if (this.internal.options == null) {
			this.internal.options = new com.grafana.foundation.heatmap.Options();
		}
        com.grafana.foundation.heatmap.Options optionsResource = (com.grafana.foundation.heatmap.Options) this.internal.options;
        optionsResource.cellValues = cellValues;
    this.internal.options = optionsResource;
        return this;
    }
    public PanelBuilder yAxis(YAxisConfig yAxis) {
		if (this.internal.options == null) {
			this.internal.options = new com.grafana.foundation.heatmap.Options();
		}
        com.grafana.foundation.heatmap.Options optionsResource = (com.grafana.foundation.heatmap.Options) this.internal.options;
        optionsResource.yAxis = yAxis;
    this.internal.options = optionsResource;
        return this;
    }
    public PanelBuilder showLegend() {
		if (this.internal.options == null) {
			this.internal.options = new com.grafana.foundation.heatmap.Options();
		}
        com.grafana.foundation.heatmap.Options optionsResource = (com.grafana.foundation.heatmap.Options) this.internal.options;
        if (optionsResource.legend == null) {
            optionsResource.legend = new com.grafana.foundation.heatmap.HeatmapLegend();
        }
        optionsResource.legend.show = true;
    this.internal.options = optionsResource;
        return this;
    }
    public PanelBuilder hideLegend() {
		if (this.internal.options == null) {
			this.internal.options = new com.grafana.foundation.heatmap.Options();
		}
        com.grafana.foundation.heatmap.Options optionsResource = (com.grafana.foundation.heatmap.Options) this.internal.options;
        if (optionsResource.legend == null) {
            optionsResource.legend = new com.grafana.foundation.heatmap.HeatmapLegend();
        }
        optionsResource.legend.show = false;
    this.internal.options = optionsResource;
        return this;
    }
    public PanelBuilder mode(TooltipDisplayMode mode) {
		if (this.internal.options == null) {
			this.internal.options = new com.grafana.foundation.heatmap.Options();
		}
        com.grafana.foundation.heatmap.Options optionsResource = (com.grafana.foundation.heatmap.Options) this.internal.options;
        if (optionsResource.tooltip == null) {
            optionsResource.tooltip = new com.grafana.foundation.heatmap.HeatmapTooltip();
        }
        
        optionsResource.tooltip.mode = mode;
    this.internal.options = optionsResource;
        return this;
    }
    public PanelBuilder showYHistogram() {
		if (this.internal.options == null) {
			this.internal.options = new com.grafana.foundation.heatmap.Options();
		}
        com.grafana.foundation.heatmap.Options optionsResource = (com.grafana.foundation.heatmap.Options) this.internal.options;
        if (optionsResource.tooltip == null) {
            optionsResource.tooltip = new com.grafana.foundation.heatmap.HeatmapTooltip();
        }
        optionsResource.tooltip.yHistogram = true;
    this.internal.options = optionsResource;
        return this;
    }
    public PanelBuilder hideYHistogram() {
		if (this.internal.options == null) {
			this.internal.options = new com.grafana.foundation.heatmap.Options();
		}
        com.grafana.foundation.heatmap.Options optionsResource = (com.grafana.foundation.heatmap.Options) this.internal.options;
        if (optionsResource.tooltip == null) {
            optionsResource.tooltip = new com.grafana.foundation.heatmap.HeatmapTooltip();
        }
        optionsResource.tooltip.yHistogram = false;
    this.internal.options = optionsResource;
        return this;
    }
    public PanelBuilder showColorScale(Boolean showColorScale) {
		if (this.internal.options == null) {
			this.internal.options = new com.grafana.foundation.heatmap.Options();
		}
        com.grafana.foundation.heatmap.Options optionsResource = (com.grafana.foundation.heatmap.Options) this.internal.options;
        if (optionsResource.tooltip == null) {
            optionsResource.tooltip = new com.grafana.foundation.heatmap.HeatmapTooltip();
        }
        
        optionsResource.tooltip.showColorScale = showColorScale;
    this.internal.options = optionsResource;
        return this;
    }
    public PanelBuilder exemplarsColor(String color) {
		if (this.internal.options == null) {
			this.internal.options = new com.grafana.foundation.heatmap.Options();
		}
        com.grafana.foundation.heatmap.Options optionsResource = (com.grafana.foundation.heatmap.Options) this.internal.options;
        if (optionsResource.exemplars == null) {
            optionsResource.exemplars = new com.grafana.foundation.heatmap.ExemplarConfig();
        }
        
        optionsResource.exemplars.color = color;
    this.internal.options = optionsResource;
        return this;
    }
    public PanelBuilder scaleDistribution(com.grafana.foundation.cog.Builder scaleDistribution) {
		if (this.internal.fieldConfig == null) {
			this.internal.fieldConfig = new com.grafana.foundation.dashboard.FieldConfigSource();
		}
		if (this.internal.fieldConfig.defaults == null) {
			this.internal.fieldConfig.defaults = new com.grafana.foundation.dashboard.FieldConfig();
		}
		if (this.internal.fieldConfig.defaults.custom == null) {
			this.internal.fieldConfig.defaults.custom = new com.grafana.foundation.heatmap.FieldConfig();
		}
        com.grafana.foundation.heatmap.FieldConfig fieldConfigResource = (com.grafana.foundation.heatmap.FieldConfig) this.internal.fieldConfig.defaults.custom;
        fieldConfigResource.scaleDistribution = scaleDistribution.build();
    this.internal.fieldConfig.defaults.custom = fieldConfigResource;
        return this;
    }
    public PanelBuilder hideFrom(com.grafana.foundation.cog.Builder hideFrom) {
		if (this.internal.fieldConfig == null) {
			this.internal.fieldConfig = new com.grafana.foundation.dashboard.FieldConfigSource();
		}
		if (this.internal.fieldConfig.defaults == null) {
			this.internal.fieldConfig.defaults = new com.grafana.foundation.dashboard.FieldConfig();
		}
		if (this.internal.fieldConfig.defaults.custom == null) {
			this.internal.fieldConfig.defaults.custom = new com.grafana.foundation.heatmap.FieldConfig();
		}
        com.grafana.foundation.heatmap.FieldConfig fieldConfigResource = (com.grafana.foundation.heatmap.FieldConfig) this.internal.fieldConfig.defaults.custom;
        fieldConfigResource.hideFrom = hideFrom.build();
    this.internal.fieldConfig.defaults.custom = fieldConfigResource;
        return this;
    }
    
    public Panel build() {
        return this.internal;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy