/*- * Copyright 2020 Beuth Hochschule für Technik Berlin, Hochschule für Technik Stuttgart * * This file is part of CityDoctor2. * * CityDoctor2 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. * * CityDoctor2 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 CityDoctor2. If not, see . */ package de.hft.stuttgart.citydoctor2.check; import java.io.Serializable; /** * Describes a parameter for a check including the default value as a String. * All values are a String as they are passed to the check as a Map. * * @author Matthias Betz * */ public class DefaultParameter implements Serializable { private static final long serialVersionUID = -4587211298078974066L; private String name; private String value; private Unit unitType; public DefaultParameter(String name, String defaultValue, Unit unitType) { this.name = name; this.value = defaultValue; this.unitType = unitType; } public Unit getUnitType() { return unitType; } /** * Getter method for name * * @return the name */ public String getName() { return name; } /** * Getter method for defaultValue * * @return the defaultValue */ public String getValue() { return value; } /* * (non-Javadoc) * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder builder = new StringBuilder(); builder.append("DefaultParameter [name="); builder.append(name); builder.append(", value="); builder.append(value); builder.append("]"); return builder.toString(); } }