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