/** */ package TaxationWithRoot; 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 'Country', * and utility methods for working with them. * * @see TaxationWithRoot.TaxationPackage#getCountry() * @model * @generated */ public enum Country implements Enumerator { /** * The 'ZZ' literal object. * * * @see #ZZ_VALUE * @generated * @ordered */ ZZ(0, "ZZ", "ZZ"), /** * The 'FF' literal object. * * * @see #FF_VALUE * @generated * @ordered */ FF(1, "FF", "FF"), /** * The 'BB' literal object. * * * @see #BB_VALUE * @generated * @ordered */ BB(2, "BB", "BB"), /** * The 'DD' literal object. * * * @see #DD_VALUE * @generated * @ordered */ DD(3, "DD", "DD"), /** * The 'NN' literal object. * * * @see #NN_VALUE * @generated * @ordered */ NN(4, "NN", "NN"), /** * The 'OTHER' literal object. * * * @see #OTHER_VALUE * @generated * @ordered */ OTHER(5, "OTHER", "OTHER"); /** * The 'ZZ' literal value. * * * @see #ZZ * @model * @generated * @ordered */ public static final int ZZ_VALUE = 0; /** * The 'FF' literal value. * * * @see #FF * @model * @generated * @ordered */ public static final int FF_VALUE = 1; /** * The 'BB' literal value. * * * @see #BB * @model * @generated * @ordered */ public static final int BB_VALUE = 2; /** * The 'DD' literal value. * * * @see #DD * @model * @generated * @ordered */ public static final int DD_VALUE = 3; /** * The 'NN' literal value. * * * @see #NN * @model * @generated * @ordered */ public static final int NN_VALUE = 4; /** * The 'OTHER' literal value. * * * @see #OTHER * @model * @generated * @ordered */ public static final int OTHER_VALUE = 5; /** * An array of all the 'Country' enumerators. * * * @generated */ private static final Country[] VALUES_ARRAY = new Country[] { ZZ, FF, BB, DD, NN, OTHER, }; /** * A public read-only list of all the 'Country' enumerators. * * * @generated */ public static final List VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); /** * Returns the 'Country' literal with the specified literal value. * * * @param literal the literal. * @return the matching enumerator or null. * @generated */ public static Country get(String literal) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { Country result = VALUES_ARRAY[i]; if (result.toString().equals(literal)) { return result; } } return null; } /** * Returns the 'Country' literal with the specified name. * * * @param name the name. * @return the matching enumerator or null. * @generated */ public static Country getByName(String name) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { Country result = VALUES_ARRAY[i]; if (result.getName().equals(name)) { return result; } } return null; } /** * Returns the 'Country' literal with the specified integer value. * * * @param value the integer value. * @return the matching enumerator or null. * @generated */ public static Country get(int value) { switch (value) { case ZZ_VALUE: return ZZ; case FF_VALUE: return FF; case BB_VALUE: return BB; case DD_VALUE: return DD; case NN_VALUE: return NN; case OTHER_VALUE: return OTHER; } 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 Country(int value, String name, String literal) { this.value = value; this.name = name; this.literal = literal; } /** * * * @generated */ @Override public int getValue() { return value; } /** * * * @generated */ @Override public String getName() { return name; } /** * * * @generated */ @Override public String getLiteral() { return literal; } /** * Returns the literal value of the enumerator, which is its string representation. * * * @generated */ @Override public String toString() { return literal; } } //Country