/** */ package Taxation; 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 'Tax Card Type', * and utility methods for working with them. * * @see Taxation.TaxationPackage#getTax_Card_Type() * @model * @generated */ public enum Tax_Card_Type implements Enumerator { /** * The 'Principal' literal object. * * * @see #PRINCIPAL_VALUE * @generated * @ordered */ PRINCIPAL(0, "Principal", "Principal"), /** * The 'Additional' literal object. * * * @see #ADDITIONAL_VALUE * @generated * @ordered */ ADDITIONAL(1, "Additional", "Additional"); /** * The 'Principal' literal value. * * * @see #PRINCIPAL * @model name="Principal" * @generated * @ordered */ public static final int PRINCIPAL_VALUE = 0; /** * The 'Additional' literal value. * * * @see #ADDITIONAL * @model name="Additional" * @generated * @ordered */ public static final int ADDITIONAL_VALUE = 1; /** * An array of all the 'Tax Card Type' enumerators. * * * @generated */ private static final Tax_Card_Type[] VALUES_ARRAY = new Tax_Card_Type[] { PRINCIPAL, ADDITIONAL, }; /** * A public read-only list of all the 'Tax Card Type' enumerators. * * * @generated */ public static final List VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); /** * Returns the 'Tax Card Type' literal with the specified literal value. * * * @param literal the literal. * @return the matching enumerator or null. * @generated */ public static Tax_Card_Type get(String literal) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { Tax_Card_Type result = VALUES_ARRAY[i]; if (result.toString().equals(literal)) { return result; } } return null; } /** * Returns the 'Tax Card Type' literal with the specified name. * * * @param name the name. * @return the matching enumerator or null. * @generated */ public static Tax_Card_Type getByName(String name) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { Tax_Card_Type result = VALUES_ARRAY[i]; if (result.getName().equals(name)) { return result; } } return null; } /** * Returns the 'Tax Card Type' literal with the specified integer value. * * * @param value the integer value. * @return the matching enumerator or null. * @generated */ public static Tax_Card_Type get(int value) { switch (value) { case PRINCIPAL_VALUE: return PRINCIPAL; case ADDITIONAL_VALUE: return ADDITIONAL; } 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 Tax_Card_Type(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; } } //Tax_Card_Type