
nl.tno.bim.nmd.domain.NmdMilieuCategorie Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bimnmdservice Show documentation
Show all versions of bimnmdservice Show documentation
provides a REST api for retrieving nmd data from various data sources
The newest version!
package nl.tno.bim.nmd.domain;
/**
* class for the various impact factors that can be present in a single
* basisprofiel These coeficients can be multiplied with the total mass, volume
* or energy equivalent and summed to get a single number (per basisprofiel)
*
* @author vijj
*
*/
public class NmdMilieuCategorie {
private String description;
private String unit;
private Double weight;
public NmdMilieuCategorie(String description, String unit, Double weight) {
setDescription(description);
setUnit(unit);
setWeight(weight);
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getUnit() {
return unit;
}
public void setUnit(String unit) {
this.unit = unit;
}
public Double getWeight() {
return weight;
}
public void setWeight(Double weight) {
this.weight = weight;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy