
net.intelie.liverig.plugin.widgets.GeneralAnalysis Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-assets Show documentation
Show all versions of plugin-assets Show documentation
Asset framework for industries solutions
The newest version!
package net.intelie.liverig.plugin.widgets;
import java.util.List;
public class GeneralAnalysis {
private Double avg;
private Double min;
private Double max;
private Double stdev;
private List originalCurvePoints;
public Double getAvg() {
return avg;
}
public void setAvg(Double avg) {
this.avg = avg;
}
public Double getMin() {
return min;
}
public void setMin(Double min) {
this.min = min;
}
public Double getMax() {
return max;
}
public void setMax(Double max) {
this.max = max;
}
public Double getStdev() {
return stdev;
}
public void setStdev(Double stdev) {
this.stdev = stdev;
}
public List getOriginalCurvePoints() {
return originalCurvePoints;
}
public void setOriginalCurvePoints(List originalCurvePoints) {
this.originalCurvePoints = originalCurvePoints;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy