/** * Copyright 2012 Markus Scheidgen * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package de.hub.emffrag.testmodels.testmodel; import java.util.Arrays; import java.util.Collections; import java.util.List; import org.eclipse.emf.common.util.Enumerator; /** * <!-- begin-user-doc --> * A representation of the literals of the enumeration '<em><b>Test Enum</b></em>', * and utility methods for working with them. * <!-- end-user-doc --> * @see de.hub.emffrag.testmodels.testmodel.frag.meta.TestModelPackage#getTestEnum() * @model * @generated */ public enum TestEnum implements Enumerator { /** * The '<em><b>Literal1</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #LITERAL1_VALUE * @generated * @ordered */ LITERAL1(0, "literal1", "literal1"), /** * The '<em><b>Literal2</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #LITERAL2_VALUE * @generated * @ordered */ LITERAL2(0, "literal2", "literal2"); /** * The '<em><b>Literal1</b></em>' literal value. * <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>Literal1</b></em>' literal object isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @see #LITERAL1 * @model name="literal1" * @generated * @ordered */ public static final int LITERAL1_VALUE = 0; /** * The '<em><b>Literal2</b></em>' literal value. * <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>Literal2</b></em>' literal object isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @see #LITERAL2 * @model name="literal2" * @generated * @ordered */ public static final int LITERAL2_VALUE = 0; /** * An array of all the '<em><b>Test Enum</b></em>' enumerators. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ private static final TestEnum[] VALUES_ARRAY = new TestEnum[] { LITERAL1, LITERAL2, }; /** * A public read-only list of all the '<em><b>Test Enum</b></em>' enumerators. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static final List<TestEnum> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); /** * Returns the '<em><b>Test Enum</b></em>' literal with the specified literal value. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static TestEnum get(String literal) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { TestEnum result = VALUES_ARRAY[i]; if (result.toString().equals(literal)) { return result; } } return null; } /** * Returns the '<em><b>Test Enum</b></em>' literal with the specified name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static TestEnum getByName(String name) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { TestEnum result = VALUES_ARRAY[i]; if (result.getName().equals(name)) { return result; } } return null; } /** * Returns the '<em><b>Test Enum</b></em>' literal with the specified integer value. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static TestEnum get(int value) { switch (value) { case LITERAL1_VALUE: return LITERAL1; } return null; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ private final int value; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ private final String name; /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ private final String literal; /** * Only this class can construct instances. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ private TestEnum(int value, String name, String literal) { this.value = value; this.name = name; this.literal = literal; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public int getValue() { return value; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getName() { return name; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public String getLiteral() { return literal; } /** * Returns the literal value of the enumerator, which is its string representation. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ @Override public String toString() { return literal; } } //TestEnum