/** * Copyright (c) 2013 MEDEVIT <office@medevit.at>. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * MEDEVIT <office@medevit.at> - initial API and implementation */ package ch.elexis.core.types; 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>Contact Type</b></em>', * and utility methods for working with them. * <!-- end-user-doc --> * @see ch.elexis.core.types.TypesPackage#getContactType() * @model * @generated */ public enum ContactType implements Enumerator { /** * The '<em><b>PERSON</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #PERSON_VALUE * @generated * @ordered */ PERSON(0, "PERSON", "PERSON"), /** * The '<em><b>ORGANIZATION</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #ORGANIZATION_VALUE * @generated * @ordered */ ORGANIZATION(1, "ORGANIZATION", "ORGANIZATION"), /** * The '<em><b>MANDATOR</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #MANDATOR_VALUE * @generated * @ordered */ MANDATOR(2, "MANDATOR", ""), /** * The '<em><b>LABORATORY</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #LABORATORY_VALUE * @generated * @ordered */ LABORATORY(3, "LABORATORY", "LABORATORY"), /** * The '<em><b>PATIENT</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #PATIENT_VALUE * @generated * @ordered */ PATIENT(4, "PATIENT", "PATIENT"), /** * The '<em><b>UNKNOWN</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #UNKNOWN_VALUE * @generated * @ordered */ UNKNOWN(9, "UNKNOWN", "UNKNOWN"), /** * The '<em><b>USER</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #USER_VALUE * @generated * @ordered */ USER(5, "USER", "USER"); /** * The '<em><b>PERSON</b></em>' literal value. * <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>PERSON</b></em>' literal object isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @see #PERSON * @model * @generated * @ordered */ public static final int PERSON_VALUE = 0; /** * The '<em><b>ORGANIZATION</b></em>' literal value. * <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>ORGANIZATION</b></em>' literal object isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @see #ORGANIZATION * @model * @generated * @ordered */ public static final int ORGANIZATION_VALUE = 1; /** * The '<em><b>MANDATOR</b></em>' literal value. * <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>MANDATOR</b></em>' literal object isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @see #MANDATOR * @model literal="" * @generated * @ordered */ public static final int MANDATOR_VALUE = 2; /** * The '<em><b>LABORATORY</b></em>' literal value. * <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>LABORATORY</b></em>' literal object isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @see #LABORATORY * @model * @generated * @ordered */ public static final int LABORATORY_VALUE = 3; /** * The '<em><b>PATIENT</b></em>' literal value. * <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>PATIENT</b></em>' literal object isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @see #PATIENT * @model * @generated * @ordered */ public static final int PATIENT_VALUE = 4; /** * The '<em><b>UNKNOWN</b></em>' literal value. * <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>UNKNOWN</b></em>' literal object isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @see #UNKNOWN * @model * @generated * @ordered */ public static final int UNKNOWN_VALUE = 9; /** * The '<em><b>USER</b></em>' literal value. * <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>USER</b></em>' literal object isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @see #USER * @model * @generated * @ordered */ public static final int USER_VALUE = 5; /** * An array of all the '<em><b>Contact Type</b></em>' enumerators. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ private static final ContactType[] VALUES_ARRAY = new ContactType[] { PERSON, ORGANIZATION, MANDATOR, LABORATORY, PATIENT, UNKNOWN, USER, }; /** * A public read-only list of all the '<em><b>Contact Type</b></em>' enumerators. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static final List<ContactType> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); /** * Returns the '<em><b>Contact Type</b></em>' literal with the specified literal value. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param literal the literal. * @return the matching enumerator or <code>null</code>. * @generated */ public static ContactType get(String literal) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { ContactType result = VALUES_ARRAY[i]; if (result.toString().equals(literal)) { return result; } } return null; } /** * Returns the '<em><b>Contact Type</b></em>' literal with the specified name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param name the name. * @return the matching enumerator or <code>null</code>. * @generated */ public static ContactType getByName(String name) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { ContactType result = VALUES_ARRAY[i]; if (result.getName().equals(name)) { return result; } } return null; } /** * Returns the '<em><b>Contact Type</b></em>' literal with the specified integer value. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the integer value. * @return the matching enumerator or <code>null</code>. * @generated */ public static ContactType get(int value) { switch (value) { case PERSON_VALUE: return PERSON; case ORGANIZATION_VALUE: return ORGANIZATION; case MANDATOR_VALUE: return MANDATOR; case LABORATORY_VALUE: return LABORATORY; case PATIENT_VALUE: return PATIENT; case UNKNOWN_VALUE: return UNKNOWN; case USER_VALUE: return USER; } 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 ContactType(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; } } //ContactType