Skip to content
Snippets Groups Projects
Commit 5a3bb47a authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

Add double parameter class

parent 54d60a1c
No related branches found
No related tags found
2 merge requests!101Production Release | nshmp-ws-static,!99Update Usage
package gov.usgs.earthquake.nshmp.netcdf.www.meta;
public final class DoubleParameter {
private final String name;
private final String units;
private final double min;
private final double max;
public DoubleParameter(String name, String units, double min, double max) {
this.name = name;
this.units = units;
this.min = min;
this.max = max;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment