/** */ package org.archstudio.xadl3.statechart_1_0; 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>State Type</b></em>', and utility * methods for working with them. <!-- end-user-doc --> * * @see org.archstudio.xadl3.statechart_1_0.Statechart_1_0Package#getStateType() * @model extendedMetaData="name='StateType'" * @generated */ public enum StateType implements Enumerator { /** * The '<em><b>Initial</b></em>' literal object. <!-- begin-user-doc --> <!-- end-user-doc --> * * @see #INITIAL_VALUE * @generated * @ordered */ INITIAL(0, "initial", "initial"), /** * The '<em><b>State</b></em>' literal object. <!-- begin-user-doc --> <!-- end-user-doc --> * * @see #STATE_VALUE * @generated * @ordered */ STATE(1, "state", "state"), /** * The '<em><b>Final</b></em>' literal object. <!-- begin-user-doc --> <!-- end-user-doc --> * * @see #FINAL_VALUE * @generated * @ordered */ FINAL(2, "final", "final"); /** * The '<em><b>Initial</b></em>' literal value. <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>Initial</b></em>' literal object isn't clear, there really should be more of a * description here... * </p> * <!-- end-user-doc --> * * @see #INITIAL * @model name="initial" * @generated * @ordered */ public static final int INITIAL_VALUE = 0; /** * The '<em><b>State</b></em>' literal value. <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>State</b></em>' literal object isn't clear, there really should be more of a * description here... * </p> * <!-- end-user-doc --> * * @see #STATE * @model name="state" * @generated * @ordered */ public static final int STATE_VALUE = 1; /** * The '<em><b>Final</b></em>' literal value. <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>Final</b></em>' literal object isn't clear, there really should be more of a * description here... * </p> * <!-- end-user-doc --> * * @see #FINAL * @model name="final" * @generated * @ordered */ public static final int FINAL_VALUE = 2; /** * An array of all the '<em><b>State Type</b></em>' enumerators. <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ private static final StateType[] VALUES_ARRAY = new StateType[] { INITIAL, STATE, FINAL, }; /** * A public read-only list of all the '<em><b>State Type</b></em>' enumerators. <!-- begin-user-doc --> <!-- * end-user-doc --> * * @generated */ public static final List<StateType> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); /** * Returns the '<em><b>State Type</b></em>' literal with the specified literal value. <!-- begin-user-doc --> <!-- * end-user-doc --> * * @param literal the literal. * @return the matching enumerator or <code>null</code>. * @generated */ public static StateType get(String literal) { for (StateType result : VALUES_ARRAY) { if (result.toString().equals(literal)) { return result; } } return null; } /** * Returns the '<em><b>State Type</b></em>' literal with the specified name. <!-- begin-user-doc --> <!-- * end-user-doc --> * * @param name the name. * @return the matching enumerator or <code>null</code>. * @generated */ public static StateType getByName(String name) { for (StateType result : VALUES_ARRAY) { if (result.getName().equals(name)) { return result; } } return null; } /** * Returns the '<em><b>State Type</b></em>' literal with the specified integer value. <!-- begin-user-doc --> <!-- * end-user-doc --> * * @param value the integer value. * @return the matching enumerator or <code>null</code>. * @generated */ public static StateType get(int value) { switch (value) { case INITIAL_VALUE: return INITIAL; case STATE_VALUE: return STATE; case FINAL_VALUE: return FINAL; } 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 StateType(int value, String name, String literal) { this.value = value; this.name = name; this.literal = literal; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override public int getValue() { return value; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override public String getName() { return name; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override 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; } } // StateType