All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.iris.dmc.seed.control.station.Number Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
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