From e3774317421935b8d63e2e0ad08a141853d31908 Mon Sep 17 00:00:00 2001 From: Aren Babikian Date: Mon, 11 Jan 2021 06:42:10 -0500 Subject: first version of the simpleScenario MM+VQL. noRealMatches bug found --- .../ecore-gen/simpleScenario/Orientation.java | 209 +++++++++++++++++++++ 1 file changed, 209 insertions(+) create mode 100644 Domains/traffic.scenarios.simplified/ecore-gen/simpleScenario/Orientation.java (limited to 'Domains/traffic.scenarios.simplified/ecore-gen/simpleScenario/Orientation.java') diff --git a/Domains/traffic.scenarios.simplified/ecore-gen/simpleScenario/Orientation.java b/Domains/traffic.scenarios.simplified/ecore-gen/simpleScenario/Orientation.java new file mode 100644 index 00000000..8f7f055b --- /dev/null +++ b/Domains/traffic.scenarios.simplified/ecore-gen/simpleScenario/Orientation.java @@ -0,0 +1,209 @@ +/** + */ +package simpleScenario; + +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 'Orientation', + * and utility methods for working with them. + * + * @see simpleScenario.SimpleScenarioPackage#getOrientation() + * @model + * @generated + */ +public enum Orientation implements Enumerator { + /** + * The 'Vertical' literal object. + * + * + * @see #VERTICAL_VALUE + * @generated + * @ordered + */ + VERTICAL(0, "Vertical", "Vertical"), + + /** + * The 'Horizontal' literal object. + * + * + * @see #HORIZONTAL_VALUE + * @generated + * @ordered + */ + HORIZONTAL(1, "Horizontal", "Horizontal"); + + /** + * The 'Vertical' literal value. + * + * + * @see #VERTICAL + * @model name="Vertical" + * @generated + * @ordered + */ + public static final int VERTICAL_VALUE = 0; + + /** + * The 'Horizontal' literal value. + * + * + * @see #HORIZONTAL + * @model name="Horizontal" + * @generated + * @ordered + */ + public static final int HORIZONTAL_VALUE = 1; + + /** + * An array of all the 'Orientation' enumerators. + * + * + * @generated + */ + private static final Orientation[] VALUES_ARRAY = + new Orientation[] { + VERTICAL, + HORIZONTAL, + }; + + /** + * A public read-only list of all the 'Orientation' enumerators. + * + * + * @generated + */ + public static final List VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); + + /** + * Returns the 'Orientation' literal with the specified literal value. + * + * + * @param literal the literal. + * @return the matching enumerator or null. + * @generated + */ + public static Orientation get(String literal) { + for (int i = 0; i < VALUES_ARRAY.length; ++i) { + Orientation result = VALUES_ARRAY[i]; + if (result.toString().equals(literal)) { + return result; + } + } + return null; + } + + /** + * Returns the 'Orientation' literal with the specified name. + * + * + * @param name the name. + * @return the matching enumerator or null. + * @generated + */ + public static Orientation getByName(String name) { + for (int i = 0; i < VALUES_ARRAY.length; ++i) { + Orientation result = VALUES_ARRAY[i]; + if (result.getName().equals(name)) { + return result; + } + } + return null; + } + + /** + * Returns the 'Orientation' literal with the specified integer value. + * + * + * @param value the integer value. + * @return the matching enumerator or null. + * @generated + */ + public static Orientation get(int value) { + switch (value) { + case VERTICAL_VALUE: return VERTICAL; + case HORIZONTAL_VALUE: return HORIZONTAL; + } + 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 Orientation(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; + } + +} //Orientation -- cgit v1.2.3-54-g00ecf