public enum Accumulator extends java.lang.Enum<Accumulator>
SmmPackage.getAccumulator()| Enum Constant and Description |
|---|
AVERAGE
The 'Average' literal object.
|
MAXIMUM
The 'Maximum' literal object.
|
MINIMUM
The 'Minimum' literal object.
|
SUM
The 'Sum' literal object.
|
| Modifier and Type | Field and Description |
|---|---|
static int |
AVERAGE_VALUE
The 'Average' literal value.
|
static int |
MAXIMUM_VALUE
The 'Maximum' literal value.
|
static int |
MINIMUM_VALUE
The 'Minimum' literal value.
|
static int |
SUM_VALUE
The 'Sum' literal value.
|
static java.util.List<Accumulator> |
VALUES
A public read-only list of all the 'Accumulator' enumerators.
|
| Modifier and Type | Method and Description |
|---|---|
static Accumulator |
get(int value)
Returns the 'Accumulator' literal with the specified integer value.
|
static Accumulator |
get(java.lang.String literal)
Returns the 'Accumulator' literal with the specified literal value.
|
static Accumulator |
getByName(java.lang.String name)
Returns the 'Accumulator' literal with the specified name.
|
java.lang.String |
getLiteral() |
java.lang.String |
getName() |
int |
getValue() |
java.lang.String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static Accumulator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Accumulator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Accumulator SUM
SUM_VALUEpublic static final Accumulator MAXIMUM
MAXIMUM_VALUEpublic static final Accumulator MINIMUM
MINIMUM_VALUEpublic static final Accumulator AVERAGE
AVERAGE_VALUEpublic 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 int MAXIMUM_VALUE
If the meaning of 'Maximum' literal object isn't clear, there really should be more of a description here...
MAXIMUM,
Constant Field Valuespublic static final int MINIMUM_VALUE
If the meaning of 'Minimum' literal object isn't clear, there really should be more of a description here...
MINIMUM,
Constant Field Valuespublic static final int AVERAGE_VALUE
If the meaning of 'Average' literal object isn't clear, there really should be more of a description here...
AVERAGE,
Constant Field Valuespublic static final java.util.List<Accumulator> VALUES
public static Accumulator[] values()
for (Accumulator c : Accumulator.values()) System.out.println(c);
public static Accumulator 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 static Accumulator get(java.lang.String literal)
public static Accumulator getByName(java.lang.String name)
public static Accumulator get(int value)
public int getValue()
public java.lang.String getName()
public java.lang.String getLiteral()
public java.lang.String toString()
toString in class java.lang.Enum<Accumulator>