public enum StudyGroup extends java.lang.Enum<StudyGroup>
Enum Constant and Description |
---|
ANOVA
Analysis of Variance study.
|
CENTRAL_TENDENCY_MEAN
Central Tendency Mean study.
|
CENTRAL_TENDENCY_MEDIAN
Central Tendency Median study.
|
MATCHED_POPULATIONS
Matched Populations study.
|
SPC
Description goes here
|
TWO_POPULATIONS
Two Populations study.
|
XYCORRELATION
XY Correlation study.
|
Modifier and Type | Method and Description |
---|---|
int |
getUnderlyingValue()
Returns a numeric value that represents the given com.softwarefx.chartfx.server.statistical.StudyGroup.
|
static StudyGroup |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StudyGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StudyGroup CENTRAL_TENDENCY_MEAN
public static final StudyGroup CENTRAL_TENDENCY_MEDIAN
public static final StudyGroup XYCORRELATION
public static final StudyGroup TWO_POPULATIONS
public static final StudyGroup MATCHED_POPULATIONS
public static final StudyGroup ANOVA
public static final StudyGroup SPC
public static StudyGroup[] values()
for (StudyGroup c : StudyGroup.values()) System.out.println(c);
public static StudyGroup valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getUnderlyingValue()
Returns a numeric value that represents the given com.softwarefx.chartfx.server.statistical.StudyGroup.
2014 Software FX, Inc. All Rights Reserved. Chart FX is a registered trademark of Software FX, Inc
All other names are trademarks or registered trademarks of their respective owners.