/** * * * * $Id$ */ package fr.femtost.disc.eclipse.problemmetamodel.problem; import java.util.Arrays; import java.util.Collections; import java.util.List; import org.eclipse.emf.common.util.Enumerator; /** * * A representation of the literals of the enumeration 'Severity', * and utility methods for working with them. * * @see fr.femtost.disc.eclipse.problemmetamodel.problem.ProblemPackage#getSeverity() * @model * @generated */ public enum Severity implements Enumerator { /** * The 'Ok' literal object. * * * @see #OK_VALUE * @generated * @ordered */ OK(0, "ok", "ok"), /** * The 'Warning' literal object. * * * @see #WARNING_VALUE * @generated * @ordered */ WARNING(1, "warning", "warning"), /** * The 'Error' literal object. * * * @see #ERROR_VALUE * @generated * @ordered */ ERROR(2, "error", "error"), /** * The 'Critic' literal object. * * * @see #CRITIC_VALUE * @generated * @ordered */ CRITIC(3, "critic", "critic"); /** * The 'Ok' literal value. * *

* If the meaning of 'Ok' literal object isn't clear, * there really should be more of a description here... *

* * @see #OK * @model name="ok" * @generated * @ordered */ public static final int OK_VALUE = 0; /** * The 'Warning' literal value. * *

* If the meaning of 'Warning' literal object isn't clear, * there really should be more of a description here... *

* * @see #WARNING * @model name="warning" * @generated * @ordered */ public static final int WARNING_VALUE = 1; /** * The 'Error' literal value. * *

* If the meaning of 'Error' literal object isn't clear, * there really should be more of a description here... *

* * @see #ERROR * @model name="error" * @generated * @ordered */ public static final int ERROR_VALUE = 2; /** * The 'Critic' literal value. * *

* If the meaning of 'Critic' literal object isn't clear, * there really should be more of a description here... *

* * @see #CRITIC * @model name="critic" * @generated * @ordered */ public static final int CRITIC_VALUE = 3; /** * An array of all the 'Severity' enumerators. * * * @generated */ private static final Severity[] VALUES_ARRAY = new Severity[] { OK, WARNING, ERROR, CRITIC, }; /** * A public read-only list of all the 'Severity' enumerators. * * * @generated */ public static final List VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); /** * Returns the 'Severity' literal with the specified literal value. * * * @generated */ public static Severity get(String literal) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { Severity result = VALUES_ARRAY[i]; if (result.toString().equals(literal)) { return result; } } return null; } /** * Returns the 'Severity' literal with the specified name. * * * @generated */ public static Severity getByName(String name) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { Severity result = VALUES_ARRAY[i]; if (result.getName().equals(name)) { return result; } } return null; } /** * Returns the 'Severity' literal with the specified integer value. * * * @generated */ public static Severity get(int value) { switch (value) { case OK_VALUE: return OK; case WARNING_VALUE: return WARNING; case ERROR_VALUE: return ERROR; case CRITIC_VALUE: return CRITIC; } return null; } /** * * * @generated */ private final int value; /** * * * @generated */ private final String name; /** * * * @generated */ private final String literal; /** * Only this class can construct instances. * * * @generated */ private Severity(int value, String name, String literal) { this.value = value; this.name = name; this.literal = literal; } /** * * * @generated */ public int getValue() { return value; } /** * * * @generated */ public String getName() { return name; } /** * * * @generated */ public String getLiteral() { return literal; } /** * Returns the literal value of the enumerator, which is its string representation. * * * @generated */ @Override public String toString() { return literal; } } //Severity