public enum MovingAverageReferenceType extends Enum<MovingAverageReferenceType> implements org.eclipse.emf.common.util.Enumerator
| Enum Constant and Description |
|---|
ARITHMETIC
The 'ARITHMETIC' literal object.
|
DEVIATION_ARITHMETIC
The 'DEVIATION ARITHMETIC' literal object.
|
DEVIATION_WEIGHTED
The 'DEVIATION WEIGHTED' literal object.
|
MAX
The 'MAX' literal object.
|
MEDIAN
The 'MEDIAN' literal object.
|
MIN
The 'MIN' literal object.
|
WEIGHTED
The 'WEIGHTED' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
ARITHMETIC_VALUE
The 'ARITHMETIC' literal value.
|
static int |
DEVIATION_ARITHMETIC_VALUE
The 'DEVIATION ARITHMETIC' literal value.
|
static int |
DEVIATION_WEIGHTED_VALUE
The 'DEVIATION WEIGHTED' literal value.
|
static int |
MAX_VALUE
The 'MAX' literal value.
|
static int |
MEDIAN_VALUE
The 'MEDIAN' literal value.
|
static int |
MIN_VALUE
The 'MIN' literal value.
|
static List<MovingAverageReferenceType> |
VALUES
A public read-only list of all the 'Moving Average Reference Type' enumerators.
|
static int |
WEIGHTED_VALUE
The 'WEIGHTED' literal value.
|
| Modifier and Type | Method and Description |
|---|---|
static MovingAverageReferenceType |
get(int value)
Returns the 'Moving Average Reference Type' literal with the specified integer value.
|
static MovingAverageReferenceType |
get(String literal)
Returns the 'Moving Average Reference Type' literal with the specified literal value.
|
static MovingAverageReferenceType |
getByName(String name)
Returns the 'Moving Average Reference Type' 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 MovingAverageReferenceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MovingAverageReferenceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MovingAverageReferenceType MIN
MIN_VALUEpublic static final MovingAverageReferenceType MAX
MAX_VALUEpublic static final MovingAverageReferenceType MEDIAN
MEDIAN_VALUEpublic static final MovingAverageReferenceType ARITHMETIC
ARITHMETIC_VALUEpublic static final MovingAverageReferenceType WEIGHTED
WEIGHTED_VALUEpublic static final MovingAverageReferenceType DEVIATION_ARITHMETIC
DEVIATION_ARITHMETIC_VALUEpublic static final MovingAverageReferenceType DEVIATION_WEIGHTED
DEVIATION_WEIGHTED_VALUEpublic static final int MIN_VALUE
If the meaning of 'MIN' literal object isn't clear, there really should be more of a description here...
MIN,
Constant Field Valuespublic static final int MAX_VALUE
If the meaning of 'MAX' literal object isn't clear, there really should be more of a description here...
MAX,
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_VALUE
If the meaning of 'ARITHMETIC' literal object isn't clear, there really should be more of a description here...
ARITHMETIC,
Constant Field Valuespublic static final int WEIGHTED_VALUE
If the meaning of 'WEIGHTED' literal object isn't clear, there really should be more of a description here...
WEIGHTED,
Constant Field Valuespublic static final int DEVIATION_ARITHMETIC_VALUE
If the meaning of 'DEVIATION ARITHMETIC' literal object isn't clear, there really should be more of a description here...
DEVIATION_ARITHMETIC,
Constant Field Valuespublic static final int DEVIATION_WEIGHTED_VALUE
If the meaning of 'DEVIATION WEIGHTED' literal object isn't clear, there really should be more of a description here...
DEVIATION_WEIGHTED,
Constant Field Valuespublic static final List<MovingAverageReferenceType> VALUES
public static MovingAverageReferenceType[] values()
for (MovingAverageReferenceType c : MovingAverageReferenceType.values()) System.out.println(c);
public static MovingAverageReferenceType 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 MovingAverageReferenceType get(String literal)
literal - the literal.null.public static MovingAverageReferenceType getByName(String name)
name - the name.null.public static MovingAverageReferenceType get(int value)
value - the integer value.null.public int getValue()
getValue in interface org.eclipse.emf.common.util.Enumeratorpublic String getName()
getName in interface org.eclipse.emf.common.util.Enumeratorpublic String getLiteral()
getLiteral in interface org.eclipse.emf.common.util.Enumeratorpublic String toString()
toString in class Enum<MovingAverageReferenceType>