org.epos.library.covjson.Parameter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of epos-covjson-java-library Show documentation
Show all versions of epos-covjson-java-library Show documentation
Java library to create and manipulate EPOS COvJSON
The newest version!
package org.epos.library.covjson;
import java.util.ArrayList;
public class Parameter {
public String type;
public Description description;
public Unit unit;
public ObservedProperty observedProperty;
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public Description getDescription() {
return description;
}
public void setDescription(Description description) {
this.description = description;
}
public Unit getUnit() {
return unit;
}
public void setUnit(Unit unit) {
this.unit = unit;
}
public ObservedProperty getObservedProperty() {
return observedProperty;
}
public void setObservedProperty(ObservedProperty observedProperty) {
this.observedProperty = observedProperty;
}
}