
com.influxdb.client.domain.HeatmapViewProperties Maven / Gradle / Ivy
/*
* InfluxDB OSS API Service
* The InfluxDB v2 API provides a programmatic interface for all interactions with InfluxDB. Access the InfluxDB API using the `/api/v2/` endpoint.
*
* OpenAPI spec version: 2.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.influxdb.client.domain;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import com.influxdb.client.domain.DashboardQuery;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
/**
* HeatmapViewProperties
*/
public class HeatmapViewProperties extends ViewProperties {
public static final String SERIALIZED_NAME_TIME_FORMAT = "timeFormat";
@SerializedName(SERIALIZED_NAME_TIME_FORMAT)
private String timeFormat;
/**
* Gets or Sets type
*/
@JsonAdapter(TypeEnum.Adapter.class)
public enum TypeEnum {
HEATMAP("heatmap");
private String value;
TypeEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static TypeEnum fromValue(String text) {
for (TypeEnum b : TypeEnum.values()) {
if (String.valueOf(b.value).equals(text)) {
return b;
}
}
return null;
}
public static class Adapter extends TypeAdapter {
@Override
public void write(final JsonWriter jsonWriter, final TypeEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public TypeEnum read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return TypeEnum.fromValue(String.valueOf(value));
}
}
}
public static final String SERIALIZED_NAME_TYPE = "type";
@SerializedName(SERIALIZED_NAME_TYPE)
private TypeEnum type = TypeEnum.HEATMAP;
public static final String SERIALIZED_NAME_QUERIES = "queries";
@SerializedName(SERIALIZED_NAME_QUERIES)
private List queries = new ArrayList<>();
public static final String SERIALIZED_NAME_COLORS = "colors";
@SerializedName(SERIALIZED_NAME_COLORS)
private List colors = new ArrayList<>();
/**
* Gets or Sets shape
*/
@JsonAdapter(ShapeEnum.Adapter.class)
public enum ShapeEnum {
CHRONOGRAF_V2("chronograf-v2");
private String value;
ShapeEnum(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
public static ShapeEnum fromValue(String text) {
for (ShapeEnum b : ShapeEnum.values()) {
if (String.valueOf(b.value).equals(text)) {
return b;
}
}
return null;
}
public static class Adapter extends TypeAdapter {
@Override
public void write(final JsonWriter jsonWriter, final ShapeEnum enumeration) throws IOException {
jsonWriter.value(enumeration.getValue());
}
@Override
public ShapeEnum read(final JsonReader jsonReader) throws IOException {
String value = jsonReader.nextString();
return ShapeEnum.fromValue(String.valueOf(value));
}
}
}
public static final String SERIALIZED_NAME_SHAPE = "shape";
@SerializedName(SERIALIZED_NAME_SHAPE)
private ShapeEnum shape = ShapeEnum.CHRONOGRAF_V2;
public static final String SERIALIZED_NAME_NOTE = "note";
@SerializedName(SERIALIZED_NAME_NOTE)
private String note;
public static final String SERIALIZED_NAME_SHOW_NOTE_WHEN_EMPTY = "showNoteWhenEmpty";
@SerializedName(SERIALIZED_NAME_SHOW_NOTE_WHEN_EMPTY)
private Boolean showNoteWhenEmpty;
public static final String SERIALIZED_NAME_X_COLUMN = "xColumn";
@SerializedName(SERIALIZED_NAME_X_COLUMN)
private String xColumn;
public static final String SERIALIZED_NAME_GENERATE_X_AXIS_TICKS = "generateXAxisTicks";
@SerializedName(SERIALIZED_NAME_GENERATE_X_AXIS_TICKS)
private List generateXAxisTicks = new ArrayList<>();
public static final String SERIALIZED_NAME_X_TOTAL_TICKS = "xTotalTicks";
@SerializedName(SERIALIZED_NAME_X_TOTAL_TICKS)
private Integer xTotalTicks;
public static final String SERIALIZED_NAME_X_TICK_START = "xTickStart";
@SerializedName(SERIALIZED_NAME_X_TICK_START)
private Float xTickStart;
public static final String SERIALIZED_NAME_X_TICK_STEP = "xTickStep";
@SerializedName(SERIALIZED_NAME_X_TICK_STEP)
private Float xTickStep;
public static final String SERIALIZED_NAME_Y_COLUMN = "yColumn";
@SerializedName(SERIALIZED_NAME_Y_COLUMN)
private String yColumn;
public static final String SERIALIZED_NAME_GENERATE_Y_AXIS_TICKS = "generateYAxisTicks";
@SerializedName(SERIALIZED_NAME_GENERATE_Y_AXIS_TICKS)
private List generateYAxisTicks = new ArrayList<>();
public static final String SERIALIZED_NAME_Y_TOTAL_TICKS = "yTotalTicks";
@SerializedName(SERIALIZED_NAME_Y_TOTAL_TICKS)
private Integer yTotalTicks;
public static final String SERIALIZED_NAME_Y_TICK_START = "yTickStart";
@SerializedName(SERIALIZED_NAME_Y_TICK_START)
private Float yTickStart;
public static final String SERIALIZED_NAME_Y_TICK_STEP = "yTickStep";
@SerializedName(SERIALIZED_NAME_Y_TICK_STEP)
private Float yTickStep;
public static final String SERIALIZED_NAME_X_DOMAIN = "xDomain";
@SerializedName(SERIALIZED_NAME_X_DOMAIN)
private List xDomain = new ArrayList<>();
public static final String SERIALIZED_NAME_Y_DOMAIN = "yDomain";
@SerializedName(SERIALIZED_NAME_Y_DOMAIN)
private List yDomain = new ArrayList<>();
public static final String SERIALIZED_NAME_X_AXIS_LABEL = "xAxisLabel";
@SerializedName(SERIALIZED_NAME_X_AXIS_LABEL)
private String xAxisLabel;
public static final String SERIALIZED_NAME_Y_AXIS_LABEL = "yAxisLabel";
@SerializedName(SERIALIZED_NAME_Y_AXIS_LABEL)
private String yAxisLabel;
public static final String SERIALIZED_NAME_X_PREFIX = "xPrefix";
@SerializedName(SERIALIZED_NAME_X_PREFIX)
private String xPrefix;
public static final String SERIALIZED_NAME_X_SUFFIX = "xSuffix";
@SerializedName(SERIALIZED_NAME_X_SUFFIX)
private String xSuffix;
public static final String SERIALIZED_NAME_Y_PREFIX = "yPrefix";
@SerializedName(SERIALIZED_NAME_Y_PREFIX)
private String yPrefix;
public static final String SERIALIZED_NAME_Y_SUFFIX = "ySuffix";
@SerializedName(SERIALIZED_NAME_Y_SUFFIX)
private String ySuffix;
public static final String SERIALIZED_NAME_BIN_SIZE = "binSize";
@SerializedName(SERIALIZED_NAME_BIN_SIZE)
private BigDecimal binSize;
public static final String SERIALIZED_NAME_LEGEND_COLORIZE_ROWS = "legendColorizeRows";
@SerializedName(SERIALIZED_NAME_LEGEND_COLORIZE_ROWS)
private Boolean legendColorizeRows;
public static final String SERIALIZED_NAME_LEGEND_HIDE = "legendHide";
@SerializedName(SERIALIZED_NAME_LEGEND_HIDE)
private Boolean legendHide;
public static final String SERIALIZED_NAME_LEGEND_OPACITY = "legendOpacity";
@SerializedName(SERIALIZED_NAME_LEGEND_OPACITY)
private Float legendOpacity;
public static final String SERIALIZED_NAME_LEGEND_ORIENTATION_THRESHOLD = "legendOrientationThreshold";
@SerializedName(SERIALIZED_NAME_LEGEND_ORIENTATION_THRESHOLD)
private Integer legendOrientationThreshold;
public HeatmapViewProperties timeFormat(String timeFormat) {
this.timeFormat = timeFormat;
return this;
}
/**
* Get timeFormat
* @return timeFormat
**/
public String getTimeFormat() {
return timeFormat;
}
public void setTimeFormat(String timeFormat) {
this.timeFormat = timeFormat;
}
/**
* Get type
* @return type
**/
public TypeEnum getType() {
return type;
}
public HeatmapViewProperties queries(List queries) {
this.queries = queries;
return this;
}
public HeatmapViewProperties addQueriesItem(DashboardQuery queriesItem) {
this.queries.add(queriesItem);
return this;
}
/**
* Get queries
* @return queries
**/
public List getQueries() {
return queries;
}
public void setQueries(List queries) {
this.queries = queries;
}
public HeatmapViewProperties colors(List colors) {
this.colors = colors;
return this;
}
public HeatmapViewProperties addColorsItem(String colorsItem) {
this.colors.add(colorsItem);
return this;
}
/**
* Colors define color encoding of data into a visualization
* @return colors
**/
public List getColors() {
return colors;
}
public void setColors(List colors) {
this.colors = colors;
}
/**
* Get shape
* @return shape
**/
public ShapeEnum getShape() {
return shape;
}
public HeatmapViewProperties note(String note) {
this.note = note;
return this;
}
/**
* Get note
* @return note
**/
public String getNote() {
return note;
}
public void setNote(String note) {
this.note = note;
}
public HeatmapViewProperties showNoteWhenEmpty(Boolean showNoteWhenEmpty) {
this.showNoteWhenEmpty = showNoteWhenEmpty;
return this;
}
/**
* If true, will display note when empty
* @return showNoteWhenEmpty
**/
public Boolean getShowNoteWhenEmpty() {
return showNoteWhenEmpty;
}
public void setShowNoteWhenEmpty(Boolean showNoteWhenEmpty) {
this.showNoteWhenEmpty = showNoteWhenEmpty;
}
public HeatmapViewProperties xColumn(String xColumn) {
this.xColumn = xColumn;
return this;
}
/**
* Get xColumn
* @return xColumn
**/
public String getXColumn() {
return xColumn;
}
public void setXColumn(String xColumn) {
this.xColumn = xColumn;
}
public HeatmapViewProperties generateXAxisTicks(List generateXAxisTicks) {
this.generateXAxisTicks = generateXAxisTicks;
return this;
}
public HeatmapViewProperties addGenerateXAxisTicksItem(String generateXAxisTicksItem) {
if (this.generateXAxisTicks == null) {
this.generateXAxisTicks = new ArrayList<>();
}
this.generateXAxisTicks.add(generateXAxisTicksItem);
return this;
}
/**
* Get generateXAxisTicks
* @return generateXAxisTicks
**/
public List getGenerateXAxisTicks() {
return generateXAxisTicks;
}
public void setGenerateXAxisTicks(List generateXAxisTicks) {
this.generateXAxisTicks = generateXAxisTicks;
}
public HeatmapViewProperties xTotalTicks(Integer xTotalTicks) {
this.xTotalTicks = xTotalTicks;
return this;
}
/**
* Get xTotalTicks
* @return xTotalTicks
**/
public Integer getXTotalTicks() {
return xTotalTicks;
}
public void setXTotalTicks(Integer xTotalTicks) {
this.xTotalTicks = xTotalTicks;
}
public HeatmapViewProperties xTickStart(Float xTickStart) {
this.xTickStart = xTickStart;
return this;
}
/**
* Get xTickStart
* @return xTickStart
**/
public Float getXTickStart() {
return xTickStart;
}
public void setXTickStart(Float xTickStart) {
this.xTickStart = xTickStart;
}
public HeatmapViewProperties xTickStep(Float xTickStep) {
this.xTickStep = xTickStep;
return this;
}
/**
* Get xTickStep
* @return xTickStep
**/
public Float getXTickStep() {
return xTickStep;
}
public void setXTickStep(Float xTickStep) {
this.xTickStep = xTickStep;
}
public HeatmapViewProperties yColumn(String yColumn) {
this.yColumn = yColumn;
return this;
}
/**
* Get yColumn
* @return yColumn
**/
public String getYColumn() {
return yColumn;
}
public void setYColumn(String yColumn) {
this.yColumn = yColumn;
}
public HeatmapViewProperties generateYAxisTicks(List generateYAxisTicks) {
this.generateYAxisTicks = generateYAxisTicks;
return this;
}
public HeatmapViewProperties addGenerateYAxisTicksItem(String generateYAxisTicksItem) {
if (this.generateYAxisTicks == null) {
this.generateYAxisTicks = new ArrayList<>();
}
this.generateYAxisTicks.add(generateYAxisTicksItem);
return this;
}
/**
* Get generateYAxisTicks
* @return generateYAxisTicks
**/
public List getGenerateYAxisTicks() {
return generateYAxisTicks;
}
public void setGenerateYAxisTicks(List generateYAxisTicks) {
this.generateYAxisTicks = generateYAxisTicks;
}
public HeatmapViewProperties yTotalTicks(Integer yTotalTicks) {
this.yTotalTicks = yTotalTicks;
return this;
}
/**
* Get yTotalTicks
* @return yTotalTicks
**/
public Integer getYTotalTicks() {
return yTotalTicks;
}
public void setYTotalTicks(Integer yTotalTicks) {
this.yTotalTicks = yTotalTicks;
}
public HeatmapViewProperties yTickStart(Float yTickStart) {
this.yTickStart = yTickStart;
return this;
}
/**
* Get yTickStart
* @return yTickStart
**/
public Float getYTickStart() {
return yTickStart;
}
public void setYTickStart(Float yTickStart) {
this.yTickStart = yTickStart;
}
public HeatmapViewProperties yTickStep(Float yTickStep) {
this.yTickStep = yTickStep;
return this;
}
/**
* Get yTickStep
* @return yTickStep
**/
public Float getYTickStep() {
return yTickStep;
}
public void setYTickStep(Float yTickStep) {
this.yTickStep = yTickStep;
}
public HeatmapViewProperties xDomain(List xDomain) {
this.xDomain = xDomain;
return this;
}
public HeatmapViewProperties addXDomainItem(BigDecimal xDomainItem) {
this.xDomain.add(xDomainItem);
return this;
}
/**
* Get xDomain
* @return xDomain
**/
public List getXDomain() {
return xDomain;
}
public void setXDomain(List xDomain) {
this.xDomain = xDomain;
}
public HeatmapViewProperties yDomain(List yDomain) {
this.yDomain = yDomain;
return this;
}
public HeatmapViewProperties addYDomainItem(BigDecimal yDomainItem) {
this.yDomain.add(yDomainItem);
return this;
}
/**
* Get yDomain
* @return yDomain
**/
public List getYDomain() {
return yDomain;
}
public void setYDomain(List yDomain) {
this.yDomain = yDomain;
}
public HeatmapViewProperties xAxisLabel(String xAxisLabel) {
this.xAxisLabel = xAxisLabel;
return this;
}
/**
* Get xAxisLabel
* @return xAxisLabel
**/
public String getXAxisLabel() {
return xAxisLabel;
}
public void setXAxisLabel(String xAxisLabel) {
this.xAxisLabel = xAxisLabel;
}
public HeatmapViewProperties yAxisLabel(String yAxisLabel) {
this.yAxisLabel = yAxisLabel;
return this;
}
/**
* Get yAxisLabel
* @return yAxisLabel
**/
public String getYAxisLabel() {
return yAxisLabel;
}
public void setYAxisLabel(String yAxisLabel) {
this.yAxisLabel = yAxisLabel;
}
public HeatmapViewProperties xPrefix(String xPrefix) {
this.xPrefix = xPrefix;
return this;
}
/**
* Get xPrefix
* @return xPrefix
**/
public String getXPrefix() {
return xPrefix;
}
public void setXPrefix(String xPrefix) {
this.xPrefix = xPrefix;
}
public HeatmapViewProperties xSuffix(String xSuffix) {
this.xSuffix = xSuffix;
return this;
}
/**
* Get xSuffix
* @return xSuffix
**/
public String getXSuffix() {
return xSuffix;
}
public void setXSuffix(String xSuffix) {
this.xSuffix = xSuffix;
}
public HeatmapViewProperties yPrefix(String yPrefix) {
this.yPrefix = yPrefix;
return this;
}
/**
* Get yPrefix
* @return yPrefix
**/
public String getYPrefix() {
return yPrefix;
}
public void setYPrefix(String yPrefix) {
this.yPrefix = yPrefix;
}
public HeatmapViewProperties ySuffix(String ySuffix) {
this.ySuffix = ySuffix;
return this;
}
/**
* Get ySuffix
* @return ySuffix
**/
public String getYSuffix() {
return ySuffix;
}
public void setYSuffix(String ySuffix) {
this.ySuffix = ySuffix;
}
public HeatmapViewProperties binSize(BigDecimal binSize) {
this.binSize = binSize;
return this;
}
/**
* Get binSize
* @return binSize
**/
public BigDecimal getBinSize() {
return binSize;
}
public void setBinSize(BigDecimal binSize) {
this.binSize = binSize;
}
public HeatmapViewProperties legendColorizeRows(Boolean legendColorizeRows) {
this.legendColorizeRows = legendColorizeRows;
return this;
}
/**
* Get legendColorizeRows
* @return legendColorizeRows
**/
public Boolean getLegendColorizeRows() {
return legendColorizeRows;
}
public void setLegendColorizeRows(Boolean legendColorizeRows) {
this.legendColorizeRows = legendColorizeRows;
}
public HeatmapViewProperties legendHide(Boolean legendHide) {
this.legendHide = legendHide;
return this;
}
/**
* Get legendHide
* @return legendHide
**/
public Boolean getLegendHide() {
return legendHide;
}
public void setLegendHide(Boolean legendHide) {
this.legendHide = legendHide;
}
public HeatmapViewProperties legendOpacity(Float legendOpacity) {
this.legendOpacity = legendOpacity;
return this;
}
/**
* Get legendOpacity
* @return legendOpacity
**/
public Float getLegendOpacity() {
return legendOpacity;
}
public void setLegendOpacity(Float legendOpacity) {
this.legendOpacity = legendOpacity;
}
public HeatmapViewProperties legendOrientationThreshold(Integer legendOrientationThreshold) {
this.legendOrientationThreshold = legendOrientationThreshold;
return this;
}
/**
* Get legendOrientationThreshold
* @return legendOrientationThreshold
**/
public Integer getLegendOrientationThreshold() {
return legendOrientationThreshold;
}
public void setLegendOrientationThreshold(Integer legendOrientationThreshold) {
this.legendOrientationThreshold = legendOrientationThreshold;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
HeatmapViewProperties heatmapViewProperties = (HeatmapViewProperties) o;
return Objects.equals(this.timeFormat, heatmapViewProperties.timeFormat) &&
Objects.equals(this.type, heatmapViewProperties.type) &&
Objects.equals(this.queries, heatmapViewProperties.queries) &&
Objects.equals(this.colors, heatmapViewProperties.colors) &&
Objects.equals(this.shape, heatmapViewProperties.shape) &&
Objects.equals(this.note, heatmapViewProperties.note) &&
Objects.equals(this.showNoteWhenEmpty, heatmapViewProperties.showNoteWhenEmpty) &&
Objects.equals(this.xColumn, heatmapViewProperties.xColumn) &&
Objects.equals(this.generateXAxisTicks, heatmapViewProperties.generateXAxisTicks) &&
Objects.equals(this.xTotalTicks, heatmapViewProperties.xTotalTicks) &&
Objects.equals(this.xTickStart, heatmapViewProperties.xTickStart) &&
Objects.equals(this.xTickStep, heatmapViewProperties.xTickStep) &&
Objects.equals(this.yColumn, heatmapViewProperties.yColumn) &&
Objects.equals(this.generateYAxisTicks, heatmapViewProperties.generateYAxisTicks) &&
Objects.equals(this.yTotalTicks, heatmapViewProperties.yTotalTicks) &&
Objects.equals(this.yTickStart, heatmapViewProperties.yTickStart) &&
Objects.equals(this.yTickStep, heatmapViewProperties.yTickStep) &&
Objects.equals(this.xDomain, heatmapViewProperties.xDomain) &&
Objects.equals(this.yDomain, heatmapViewProperties.yDomain) &&
Objects.equals(this.xAxisLabel, heatmapViewProperties.xAxisLabel) &&
Objects.equals(this.yAxisLabel, heatmapViewProperties.yAxisLabel) &&
Objects.equals(this.xPrefix, heatmapViewProperties.xPrefix) &&
Objects.equals(this.xSuffix, heatmapViewProperties.xSuffix) &&
Objects.equals(this.yPrefix, heatmapViewProperties.yPrefix) &&
Objects.equals(this.ySuffix, heatmapViewProperties.ySuffix) &&
Objects.equals(this.binSize, heatmapViewProperties.binSize) &&
Objects.equals(this.legendColorizeRows, heatmapViewProperties.legendColorizeRows) &&
Objects.equals(this.legendHide, heatmapViewProperties.legendHide) &&
Objects.equals(this.legendOpacity, heatmapViewProperties.legendOpacity) &&
Objects.equals(this.legendOrientationThreshold, heatmapViewProperties.legendOrientationThreshold) &&
super.equals(o);
}
@Override
public int hashCode() {
return Objects.hash(timeFormat, type, queries, colors, shape, note, showNoteWhenEmpty, xColumn, generateXAxisTicks, xTotalTicks, xTickStart, xTickStep, yColumn, generateYAxisTicks, yTotalTicks, yTickStart, yTickStep, xDomain, yDomain, xAxisLabel, yAxisLabel, xPrefix, xSuffix, yPrefix, ySuffix, binSize, legendColorizeRows, legendHide, legendOpacity, legendOrientationThreshold, super.hashCode());
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class HeatmapViewProperties {\n");
sb.append(" ").append(toIndentedString(super.toString())).append("\n");
sb.append(" timeFormat: ").append(toIndentedString(timeFormat)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" queries: ").append(toIndentedString(queries)).append("\n");
sb.append(" colors: ").append(toIndentedString(colors)).append("\n");
sb.append(" shape: ").append(toIndentedString(shape)).append("\n");
sb.append(" note: ").append(toIndentedString(note)).append("\n");
sb.append(" showNoteWhenEmpty: ").append(toIndentedString(showNoteWhenEmpty)).append("\n");
sb.append(" xColumn: ").append(toIndentedString(xColumn)).append("\n");
sb.append(" generateXAxisTicks: ").append(toIndentedString(generateXAxisTicks)).append("\n");
sb.append(" xTotalTicks: ").append(toIndentedString(xTotalTicks)).append("\n");
sb.append(" xTickStart: ").append(toIndentedString(xTickStart)).append("\n");
sb.append(" xTickStep: ").append(toIndentedString(xTickStep)).append("\n");
sb.append(" yColumn: ").append(toIndentedString(yColumn)).append("\n");
sb.append(" generateYAxisTicks: ").append(toIndentedString(generateYAxisTicks)).append("\n");
sb.append(" yTotalTicks: ").append(toIndentedString(yTotalTicks)).append("\n");
sb.append(" yTickStart: ").append(toIndentedString(yTickStart)).append("\n");
sb.append(" yTickStep: ").append(toIndentedString(yTickStep)).append("\n");
sb.append(" xDomain: ").append(toIndentedString(xDomain)).append("\n");
sb.append(" yDomain: ").append(toIndentedString(yDomain)).append("\n");
sb.append(" xAxisLabel: ").append(toIndentedString(xAxisLabel)).append("\n");
sb.append(" yAxisLabel: ").append(toIndentedString(yAxisLabel)).append("\n");
sb.append(" xPrefix: ").append(toIndentedString(xPrefix)).append("\n");
sb.append(" xSuffix: ").append(toIndentedString(xSuffix)).append("\n");
sb.append(" yPrefix: ").append(toIndentedString(yPrefix)).append("\n");
sb.append(" ySuffix: ").append(toIndentedString(ySuffix)).append("\n");
sb.append(" binSize: ").append(toIndentedString(binSize)).append("\n");
sb.append(" legendColorizeRows: ").append(toIndentedString(legendColorizeRows)).append("\n");
sb.append(" legendHide: ").append(toIndentedString(legendHide)).append("\n");
sb.append(" legendOpacity: ").append(toIndentedString(legendOpacity)).append("\n");
sb.append(" legendOrientationThreshold: ").append(toIndentedString(legendOrientationThreshold)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy