public enum StatisticalCharacterizationEnum extends Enum<StatisticalCharacterizationEnum> implements Enumerator
MonitorRepositoryPackage.getStatisticalCharacterizationEnum()| Enum Constant and Description |
|---|
ARITHMETIC_MEAN
The 'Arithmetic Mean' literal object.
|
GEOMETRIC_MEAN
The 'Geometric Mean' literal object.
|
HARMONIC_MEAN
The 'Harmonic Mean' literal object.
|
MEDIAN
The 'Median' literal object.
|
NONE
The 'None' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
ARITHMETIC_MEAN_VALUE
The 'Arithmetic Mean' literal value.
|
static int |
GEOMETRIC_MEAN_VALUE
The 'Geometric Mean' literal value.
|
static int |
HARMONIC_MEAN_VALUE
The 'Harmonic Mean' literal value.
|
static int |
MEDIAN_VALUE
The 'Median' literal value.
|
static int |
NONE_VALUE
The 'None' literal value.
|
static List<StatisticalCharacterizationEnum> |
VALUES
A public read-only list of all the 'Statistical Characterization Enum'
enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static StatisticalCharacterizationEnum |
get(int value)
Returns the 'Statistical Characterization Enum' literal with the specified
integer value.
|
static StatisticalCharacterizationEnum |
get(String literal)
Returns the 'Statistical Characterization Enum' literal with the specified
literal value.
|
static StatisticalCharacterizationEnum |
getByName(String name)
Returns the 'Statistical Characterization Enum' literal with the specified
name.
|
String |
getLiteral() |
String |
getName() |
int |
getValue() |
String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static StatisticalCharacterizationEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatisticalCharacterizationEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatisticalCharacterizationEnum NONE
NONE_VALUEpublic static final StatisticalCharacterizationEnum MEDIAN
MEDIAN_VALUEpublic static final StatisticalCharacterizationEnum ARITHMETIC_MEAN
ARITHMETIC_MEAN_VALUEpublic static final StatisticalCharacterizationEnum GEOMETRIC_MEAN
GEOMETRIC_MEAN_VALUEpublic static final StatisticalCharacterizationEnum HARMONIC_MEAN
HARMONIC_MEAN_VALUEpublic static final int NONE_VALUE
If the meaning of 'None' literal object isn't clear, there really should be more of a description here...
NONE,
Constant Field Valuespublic static final int MEDIAN_VALUE
If the meaning of 'Median' literal object isn't clear, there really should be more of a description here...
MEDIAN,
Constant Field Valuespublic static final int ARITHMETIC_MEAN_VALUE
If the meaning of 'Arithmetic Mean' literal object isn't clear, there really should be more of a description here...
ARITHMETIC_MEAN,
Constant Field Valuespublic static final int GEOMETRIC_MEAN_VALUE
If the meaning of 'Geometric Mean' literal object isn't clear, there really should be more of a description here...
GEOMETRIC_MEAN,
Constant Field Valuespublic static final int HARMONIC_MEAN_VALUE
If the meaning of 'Harmonic Mean' literal object isn't clear, there really should be more of a description here...
HARMONIC_MEAN,
Constant Field Valuespublic static final List<StatisticalCharacterizationEnum> VALUES
public static StatisticalCharacterizationEnum[] values()
for (StatisticalCharacterizationEnum c : StatisticalCharacterizationEnum.values()) System.out.println(c);
public static StatisticalCharacterizationEnum valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static StatisticalCharacterizationEnum get(String literal)
literal - the literal.null.public static StatisticalCharacterizationEnum getByName(String name)
name - the name.null.public static StatisticalCharacterizationEnum get(int value)
value - the integer value.null.public int getValue()
getValue in interface Enumeratorpublic String getName()
getName in interface Enumeratorpublic String getLiteral()
getLiteral in interface Enumeratorpublic String toString()
toString in class Enum<StatisticalCharacterizationEnum>