lt.monarch.chart.spc
Enum ControlChartType

java.lang.Object
  extended by java.lang.Enum<ControlChartType>
      extended by lt.monarch.chart.spc.ControlChartType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ControlChartType>

public enum ControlChartType
extends java.lang.Enum<ControlChartType>

Control chart types


Enum Constant Summary
Enum Constant and Description
C
          c-chart
Individuals
          Individuals chart.
MovingRange
          Moving Range chart.
NP
          np-chart
P
          p-chart
Range
          Range chart.
Sigma
          s (sigma) chart
U
          u-chart
X
          XBar (Mean, averages) chart.
 
Method Summary
Modifier and Type Method and Description
static ControlChartType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ControlChartType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

P

public static final ControlChartType P
p-chart


NP

public static final ControlChartType NP
np-chart


C

public static final ControlChartType C
c-chart


X

public static final ControlChartType X
XBar (Mean, averages) chart. Part of XBarS and XBarR charts.


Range

public static final ControlChartType Range
Range chart. Part of XBarR chart.


U

public static final ControlChartType U
u-chart


MovingRange

public static final ControlChartType MovingRange
Moving Range chart. Part of Individuals moving chart.


Sigma

public static final ControlChartType Sigma
s (sigma) chart


Individuals

public static final ControlChartType Individuals
Individuals chart. Part of Individuals moving chart.

Method Detail

values

public static ControlChartType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ControlChartType c : ControlChartType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ControlChartType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null