Package adams.data.spc
Class Limits
- java.lang.Object
-
- adams.data.spc.Limits
-
- All Implemented Interfaces:
Serializable
public class Limits extends Object implements Serializable
TODO: What class does.- Version:
- $Revision$
- Author:
- FracPete (fracpete at waikato dot ac dot nz)
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetCenter()Returns the center.doublegetLower()Returns the lower limit.doublegetUpper()Returns the upper limit.StringtoString()Returns a short description of the container.
-
-
-
Constructor Detail
-
Limits
public Limits()
Initializes the container with dummy data.
-
Limits
public Limits(double[] stats)
Initializes the container.- Parameters:
stats- the statistics (center/lower/upper)
-
Limits
public Limits(double lower, double center, double upper)Initializes the container.- Parameters:
lower- the lower limitcenter- the centerupper- the upper limit
-
-