blob: 5238d8e90c73d93d2cd89cdfaffa75f71f7ddf44 [file] [log] [blame]
/**
* Copyright (c) 2010, 2019 Mia-Software and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Nicolas Payneau (Mia-Software) - initial API and implementation
*/
package org.eclipse.modisco.omg.smm;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import org.eclipse.emf.common.util.Enumerator;
/**
* <!-- begin-user-doc -->
* A representation of the literals of the enumeration '<em><b>Accumulator</b></em>',
* and utility methods for working with them.
* <!-- end-user-doc -->
* @see org.eclipse.modisco.omg.smm.SmmPackage#getAccumulator()
* @model
* @generated
*/
public enum Accumulator implements Enumerator {
/**
* The '<em><b>Sum</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #SUM_VALUE
* @generated
* @ordered
*/
SUM(0, "sum", "sum"),
/**
* The '<em><b>Maximum</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #MAXIMUM_VALUE
* @generated
* @ordered
*/
MAXIMUM(1, "maximum", "maximum"),
/**
* The '<em><b>Minimum</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #MINIMUM_VALUE
* @generated
* @ordered
*/
MINIMUM(2, "minimum", "minimum"),
/**
* The '<em><b>Average</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #AVERAGE_VALUE
* @generated
* @ordered
*/
AVERAGE(3, "average", "average"),
/**
* The '<em><b>Standard Deviation</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #STANDARD_DEVIATION_VALUE
* @generated
* @ordered
*/
STANDARD_DEVIATION(4, "standardDeviation", "standardDeviation");
/**
* The '<em><b>Sum</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Sum</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #SUM
* @model name="sum"
* @generated
* @ordered
*/
public static final int SUM_VALUE = 0;
/**
* The '<em><b>Maximum</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Maximum</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #MAXIMUM
* @model name="maximum"
* @generated
* @ordered
*/
public static final int MAXIMUM_VALUE = 1;
/**
* The '<em><b>Minimum</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Minimum</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #MINIMUM
* @model name="minimum"
* @generated
* @ordered
*/
public static final int MINIMUM_VALUE = 2;
/**
* The '<em><b>Average</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Average</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #AVERAGE
* @model name="average"
* @generated
* @ordered
*/
public static final int AVERAGE_VALUE = 3;
/**
* The '<em><b>Standard Deviation</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Standard Deviation</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #STANDARD_DEVIATION
* @model name="standardDeviation"
* @generated
* @ordered
*/
public static final int STANDARD_DEVIATION_VALUE = 4;
/**
* An array of all the '<em><b>Accumulator</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static final Accumulator[] VALUES_ARRAY =
new Accumulator[] {
SUM,
MAXIMUM,
MINIMUM,
AVERAGE,
STANDARD_DEVIATION,
};
/**
* A public read-only list of all the '<em><b>Accumulator</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final List<Accumulator> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>Accumulator</b></em>' literal with the specified literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static Accumulator get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
Accumulator result = VALUES_ARRAY[i];
if (result.toString().equals(literal)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Accumulator</b></em>' literal with the specified name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static Accumulator getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
Accumulator result = VALUES_ARRAY[i];
if (result.getName().equals(name)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Accumulator</b></em>' literal with the specified integer value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static Accumulator get(int value) {
switch (value) {
case SUM_VALUE: return SUM;
case MAXIMUM_VALUE: return MAXIMUM;
case MINIMUM_VALUE: return MINIMUM;
case AVERAGE_VALUE: return AVERAGE;
case STANDARD_DEVIATION_VALUE: return STANDARD_DEVIATION;
}
return null;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private final int value;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private final String name;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private final String literal;
/**
* Only this class can construct instances.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private Accumulator(int value, String name, String literal) {
this.value = value;
this.name = name;
this.literal = literal;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public int getValue() {
return value;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String getName() {
return name;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String getLiteral() {
return literal;
}
/**
* Returns the literal value of the enumerator, which is its string representation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public String toString() {
return literal;
}
} //Accumulator