/** */ package org.eclipse.qvto.examples.xtext.imperativeoclcs; 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>Init Op CS</b></em>', * and utility methods for working with them. * <!-- end-user-doc --> * @see org.eclipse.qvto.examples.xtext.imperativeoclcs.ImperativeOCLCSPackage#getInitOpCS() * @model * @generated */ public enum InitOpCS implements Enumerator { /** * The '<em><b>Equals</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #EQUALS_VALUE * @generated * @ordered */ EQUALS(0, "Equals", "="), /** * The '<em><b>Colon Equals</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #COLON_EQUALS_VALUE * @generated * @ordered */ COLON_EQUALS(1, "ColonEquals", ":="), /** * The '<em><b>Colon Colon Equals</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #COLON_COLON_EQUALS_VALUE * @generated * @ordered */ COLON_COLON_EQUALS(2, "ColonColonEquals", "::="); /** * The '<em><b>Equals</b></em>' literal value. * <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>EQUALS</b></em>' literal object isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @see #EQUALS * @model name="Equals" literal="=" * @generated * @ordered */ public static final int EQUALS_VALUE = 0; /** * The '<em><b>Colon Equals</b></em>' literal value. * <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>COLON EQUALS</b></em>' literal object isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @see #COLON_EQUALS * @model name="ColonEquals" literal=":=" * @generated * @ordered */ public static final int COLON_EQUALS_VALUE = 1; /** * The '<em><b>Colon Colon Equals</b></em>' literal value. * <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>COLON COLON EQUALS</b></em>' literal object isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @see #COLON_COLON_EQUALS * @model name="ColonColonEquals" literal="::=" * @generated * @ordered */ public static final int COLON_COLON_EQUALS_VALUE = 2; /** * An array of all the '<em><b>Init Op CS</b></em>' enumerators. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ private static final InitOpCS[] VALUES_ARRAY = new InitOpCS[] { EQUALS, COLON_EQUALS, COLON_COLON_EQUALS, }; /** * A public read-only list of all the '<em><b>Init Op CS</b></em>' enumerators. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static final List<InitOpCS> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); /** * Returns the '<em><b>Init Op CS</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 InitOpCS get(String literal) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { InitOpCS result = VALUES_ARRAY[i]; if (result.toString().equals(literal)) { return result; } } return null; } /** * Returns the '<em><b>Init Op CS</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 InitOpCS getByName(String name) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { InitOpCS result = VALUES_ARRAY[i]; if (result.getName().equals(name)) { return result; } } return null; } /** * Returns the '<em><b>Init Op CS</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 InitOpCS get(int value) { switch (value) { case EQUALS_VALUE: return EQUALS; case COLON_EQUALS_VALUE: return COLON_EQUALS; case COLON_COLON_EQUALS_VALUE: return COLON_COLON_EQUALS; } 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 InitOpCS(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; } } //InitOpCS