/** * generated by Xtext 2.13.0 */ package com.minres.rdl.rdl; 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 'Component Definition Type', * and utility methods for working with them. * * @see com.minres.rdl.rdl.RdlPackage#getComponentDefinitionType() * @model * @generated */ public enum ComponentDefinitionType implements Enumerator { /** * The 'SIGNAL' literal object. * * * @see #SIGNAL_VALUE * @generated * @ordered */ SIGNAL(0, "SIGNAL", "signal"), /** * The 'ADDRMAP' literal object. * * * @see #ADDRMAP_VALUE * @generated * @ordered */ ADDRMAP(1, "ADDRMAP", "addrmap"), /** * The 'REGFILE' literal object. * * * @see #REGFILE_VALUE * @generated * @ordered */ REGFILE(2, "REGFILE", "regfile"), /** * The 'REG' literal object. * * * @see #REG_VALUE * @generated * @ordered */ REG(3, "REG", "reg"), /** * The 'FIELD' literal object. * * * @see #FIELD_VALUE * @generated * @ordered */ FIELD(4, "FIELD", "field"); /** * The 'SIGNAL' literal value. * *

* If the meaning of 'SIGNAL' literal object isn't clear, * there really should be more of a description here... *

* * @see #SIGNAL * @model literal="signal" * @generated * @ordered */ public static final int SIGNAL_VALUE = 0; /** * The 'ADDRMAP' literal value. * *

* If the meaning of 'ADDRMAP' literal object isn't clear, * there really should be more of a description here... *

* * @see #ADDRMAP * @model literal="addrmap" * @generated * @ordered */ public static final int ADDRMAP_VALUE = 1; /** * The 'REGFILE' literal value. * *

* If the meaning of 'REGFILE' literal object isn't clear, * there really should be more of a description here... *

* * @see #REGFILE * @model literal="regfile" * @generated * @ordered */ public static final int REGFILE_VALUE = 2; /** * The 'REG' literal value. * *

* If the meaning of 'REG' literal object isn't clear, * there really should be more of a description here... *

* * @see #REG * @model literal="reg" * @generated * @ordered */ public static final int REG_VALUE = 3; /** * The 'FIELD' literal value. * *

* If the meaning of 'FIELD' literal object isn't clear, * there really should be more of a description here... *

* * @see #FIELD * @model literal="field" * @generated * @ordered */ public static final int FIELD_VALUE = 4; /** * An array of all the 'Component Definition Type' enumerators. * * * @generated */ private static final ComponentDefinitionType[] VALUES_ARRAY = new ComponentDefinitionType[] { SIGNAL, ADDRMAP, REGFILE, REG, FIELD, }; /** * A public read-only list of all the 'Component Definition Type' enumerators. * * * @generated */ public static final List VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); /** * Returns the 'Component Definition Type' literal with the specified literal value. * * * @param literal the literal. * @return the matching enumerator or null. * @generated */ public static ComponentDefinitionType get(String literal) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { ComponentDefinitionType result = VALUES_ARRAY[i]; if (result.toString().equals(literal)) { return result; } } return null; } /** * Returns the 'Component Definition Type' literal with the specified name. * * * @param name the name. * @return the matching enumerator or null. * @generated */ public static ComponentDefinitionType getByName(String name) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { ComponentDefinitionType result = VALUES_ARRAY[i]; if (result.getName().equals(name)) { return result; } } return null; } /** * Returns the 'Component Definition Type' literal with the specified integer value. * * * @param value the integer value. * @return the matching enumerator or null. * @generated */ public static ComponentDefinitionType get(int value) { switch (value) { case SIGNAL_VALUE: return SIGNAL; case ADDRMAP_VALUE: return ADDRMAP; case REGFILE_VALUE: return REGFILE; case REG_VALUE: return REG; case FIELD_VALUE: return FIELD; } 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 ComponentDefinitionType(int value, String name, String literal) { this.value = value; this.name = name; this.literal = literal; } /** * * * @generated */ public int getValue() { return value; } /** * * * @generated */ public String getName() { return name; } /** * * * @generated */ public String getLiteral() { return literal; } /** * Returns the literal value of the enumerator, which is its string representation. * * * @generated */ @Override public String toString() { return literal; } } //ComponentDefinitionType