/* * SonarQube * Copyright (C) 2009-2025 SonarSource SA * mailto:info AT sonarsource DOT com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software Foundation, * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ package org.sonar.db.metric; import javax.annotation.CheckForNull; import javax.annotation.Nullable; import org.sonar.api.measures.Metric; import static org.sonar.db.metric.MetricValidator.checkMetricDescription; import static org.sonar.db.metric.MetricValidator.checkMetricDomain; import static org.sonar.db.metric.MetricValidator.checkMetricKey; import static org.sonar.db.metric.MetricValidator.checkMetricName; public class MetricDto { private String uuid; private String kee; private String shortName; private String valueType; private String description; private String domain; private int direction; private boolean qualitative; private Double worstValue; private Double bestValue; private boolean optimizedBestValue; private boolean hidden; private boolean deleteHistoricalData; private boolean enabled; private Integer decimalScale; public String getUuid() { return uuid; } public MetricDto setUuid(String uuid) { this.uuid = uuid; return this; } public String getKey() { return kee; } public MetricDto setKey(String key) { this.kee = checkMetricKey(key); return this; } public String getShortName() { return shortName; } public MetricDto setShortName(String shortName) { this.shortName = checkMetricName(shortName); return this; } public String getValueType() { return valueType; } public MetricDto setValueType(String valueType) { this.valueType = valueType; return this; } /** * @return null for manual metrics */ @CheckForNull public String getDescription() { return description; } public MetricDto setDescription(@Nullable String description) { this.description = checkMetricDescription(description); return this; } @CheckForNull public String getDomain() { return domain; } public MetricDto setDomain(@Nullable String domain) { this.domain = checkMetricDomain(domain); return this; } public int getDirection() { return direction; } public MetricDto setDirection(int direction) { this.direction = direction; return this; } public boolean isQualitative() { return qualitative; } public MetricDto setQualitative(boolean qualitative) { this.qualitative = qualitative; return this; } @CheckForNull public Double getWorstValue() { return worstValue; } public MetricDto setWorstValue(@Nullable Double worstValue) { this.worstValue = worstValue; return this; } @CheckForNull public Double getBestValue() { return bestValue; } public MetricDto setBestValue(@Nullable Double bestValue) { this.bestValue = bestValue; return this; } public boolean isOptimizedBestValue() { return optimizedBestValue; } public MetricDto setOptimizedBestValue(boolean optimizedBestValue) { this.optimizedBestValue = optimizedBestValue; return this; } public boolean isHidden() { return hidden; } public MetricDto setHidden(boolean hidden) { this.hidden = hidden; return this; } public boolean isDeleteHistoricalData() { return deleteHistoricalData; } public MetricDto setDeleteHistoricalData(boolean deleteHistoricalData) { this.deleteHistoricalData = deleteHistoricalData; return this; } public boolean isEnabled() { return enabled; } public MetricDto setEnabled(boolean enabled) { this.enabled = enabled; return this; } @CheckForNull public Integer getDecimalScale() { return decimalScale; } public MetricDto setDecimalScale(@Nullable Integer i) { this.decimalScale = i; return this; } public boolean isNumeric() { return switch (Metric.ValueType.valueOf(valueType)) { case INT, MILLISEC, WORK_DUR, FLOAT, PERCENT, RATING, BOOL -> true; default -> false; }; } }