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 double
getCenter()
Returns the center.double
getLower()
Returns the lower limit.double
getUpper()
Returns the upper limit.String
toString()
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
-
-