/** * generated by Xtext 2.21.0 */ package hu.bme.mit.inf.dslreasoner.application.applicationConfiguration; 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 'Optimization Direction', * and utility methods for working with them. * * @see hu.bme.mit.inf.dslreasoner.application.applicationConfiguration.ApplicationConfigurationPackage#getOptimizationDirection() * @model * @generated */ public enum OptimizationDirection implements Enumerator { /** * The 'MINIMIZE' literal object. * * * @see #MINIMIZE_VALUE * @generated * @ordered */ MINIMIZE(0, "MINIMIZE", "minimize"), /** * The 'MAXIMIZE' literal object. * * * @see #MAXIMIZE_VALUE * @generated * @ordered */ MAXIMIZE(1, "MAXIMIZE", "maximize"); /** * The 'MINIMIZE' literal value. * * * @see #MINIMIZE * @model literal="minimize" * @generated * @ordered */ public static final int MINIMIZE_VALUE = 0; /** * The 'MAXIMIZE' literal value. * * * @see #MAXIMIZE * @model literal="maximize" * @generated * @ordered */ public static final int MAXIMIZE_VALUE = 1; /** * An array of all the 'Optimization Direction' enumerators. * * * @generated */ private static final OptimizationDirection[] VALUES_ARRAY = new OptimizationDirection[] { MINIMIZE, MAXIMIZE, }; /** * A public read-only list of all the 'Optimization Direction' enumerators. * * * @generated */ public static final List VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); /** * Returns the 'Optimization Direction' literal with the specified literal value. * * * @param literal the literal. * @return the matching enumerator or null. * @generated */ public static OptimizationDirection get(String literal) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { OptimizationDirection result = VALUES_ARRAY[i]; if (result.toString().equals(literal)) { return result; } } return null; } /** * Returns the 'Optimization Direction' literal with the specified name. * * * @param name the name. * @return the matching enumerator or null. * @generated */ public static OptimizationDirection getByName(String name) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { OptimizationDirection result = VALUES_ARRAY[i]; if (result.getName().equals(name)) { return result; } } return null; } /** * Returns the 'Optimization Direction' literal with the specified integer value. * * * @param value the integer value. * @return the matching enumerator or null. * @generated */ public static OptimizationDirection get(int value) { switch (value) { case MINIMIZE_VALUE: return MINIMIZE; case MAXIMIZE_VALUE: return MAXIMIZE; } 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 OptimizationDirection(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; } } //OptimizationDirection