edu.iris.dmc.seed.control.station.Number Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-4-seed Show documentation
Show all versions of java-4-seed Show documentation
Java API to work with seismic dataless seed
package edu.iris.dmc.seed.control.station;
public class Number {
private double value;
private double error;
public Number() {
}
public Number(double value, double error) {
this.value = value;
this.error = error;
}
public double getValue() {
return value;
}
public void setValue(double value) {
this.value = value;
}
public double getError() {
return error;
}
public void setError(double error) {
this.error = error;
}
@Override
public String toString() {
return "Number [value=" + value + ", error=" + error + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy