/** */ package satellite; 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 'Antenna Gain', * and utility methods for working with them. * * @see satellite.SatellitePackage#getAntennaGain() * @model * @generated */ public enum AntennaGain implements Enumerator { /** * The 'LOW' literal object. * * * @see #LOW_VALUE * @generated * @ordered */ LOW(0, "LOW", "LOW"), /** * The 'MEDIUM' literal object. * * * @see #MEDIUM_VALUE * @generated * @ordered */ MEDIUM(1, "MEDIUM", "MEDIUM"), /** * The 'HIGH' literal object. * * * @see #HIGH_VALUE * @generated * @ordered */ HIGH(2, "HIGH", "HIGH"); /** * The 'LOW' literal value. * * * @see #LOW * @model * @generated * @ordered */ public static final int LOW_VALUE = 0; /** * The 'MEDIUM' literal value. * * * @see #MEDIUM * @model * @generated * @ordered */ public static final int MEDIUM_VALUE = 1; /** * The 'HIGH' literal value. * * * @see #HIGH * @model * @generated * @ordered */ public static final int HIGH_VALUE = 2; /** * An array of all the 'Antenna Gain' enumerators. * * * @generated */ private static final AntennaGain[] VALUES_ARRAY = new AntennaGain[] { LOW, MEDIUM, HIGH, }; /** * A public read-only list of all the 'Antenna Gain' enumerators. * * * @generated */ public static final List VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); /** * Returns the 'Antenna Gain' literal with the specified literal value. * * * @param literal the literal. * @return the matching enumerator or null. * @generated */ public static AntennaGain get(String literal) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { AntennaGain result = VALUES_ARRAY[i]; if (result.toString().equals(literal)) { return result; } } return null; } /** * Returns the 'Antenna Gain' literal with the specified name. * * * @param name the name. * @return the matching enumerator or null. * @generated */ public static AntennaGain getByName(String name) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { AntennaGain result = VALUES_ARRAY[i]; if (result.getName().equals(name)) { return result; } } return null; } /** * Returns the 'Antenna Gain' literal with the specified integer value. * * * @param value the integer value. * @return the matching enumerator or null. * @generated */ public static AntennaGain get(int value) { switch (value) { case LOW_VALUE: return LOW; case MEDIUM_VALUE: return MEDIUM; case HIGH_VALUE: return HIGH; } 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 AntennaGain(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; } } //AntennaGain