/** * <copyright> * </copyright> * * $Id$ */ package orgomg.cwm.resource.relational.enumerations; 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>Condition Timing Type</b></em>', * and utility methods for working with them. * <!-- end-user-doc --> * <!-- begin-model-doc --> * Used in Triggers. * It indicates if the trigger activity is run before or after the statement or row is modified. * <!-- end-model-doc --> * @see orgomg.cwm.resource.relational.enumerations.EnumerationsPackage#getConditionTimingType() * @model * @generated */ public enum ConditionTimingType implements Enumerator { /** * The '<em><b>Before</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #BEFORE_VALUE * @generated * @ordered */ BEFORE(0, "before", "before"), /** * The '<em><b>After</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #AFTER_VALUE * @generated * @ordered */ AFTER(1, "after", "after"); /** * The '<em><b>Before</b></em>' literal value. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * The Trigger activity is run before the data is changed in the table. * <!-- end-model-doc --> * @see #BEFORE * @model name="before" * @generated * @ordered */ public static final int BEFORE_VALUE = 0; /** * The '<em><b>After</b></em>' literal value. * <!-- begin-user-doc --> * <!-- end-user-doc --> * <!-- begin-model-doc --> * This Trigger activity is run after the data are modified in the table. * <!-- end-model-doc --> * @see #AFTER * @model name="after" * @generated * @ordered */ public static final int AFTER_VALUE = 1; /** * An array of all the '<em><b>Condition Timing Type</b></em>' enumerators. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ private static final ConditionTimingType[] VALUES_ARRAY = new ConditionTimingType[] { BEFORE, AFTER, }; /** * A public read-only list of all the '<em><b>Condition Timing Type</b></em>' enumerators. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static final List<ConditionTimingType> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); /** * Returns the '<em><b>Condition Timing Type</b></em>' literal with the specified literal value. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static ConditionTimingType get(String literal) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { ConditionTimingType result = VALUES_ARRAY[i]; if (result.toString().equals(literal)) { return result; } } return null; } /** * Returns the '<em><b>Condition Timing Type</b></em>' literal with the specified name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static ConditionTimingType getByName(String name) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { ConditionTimingType result = VALUES_ARRAY[i]; if (result.getName().equals(name)) { return result; } } return null; } /** * Returns the '<em><b>Condition Timing Type</b></em>' literal with the specified integer value. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static ConditionTimingType get(int value) { switch (value) { case BEFORE_VALUE: return BEFORE; case AFTER_VALUE: return AFTER; } 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 ConditionTimingType(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; } } //ConditionTimingType