blob: b80e49ed54a113c26a408bb8e6b8f80219001be4 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 David Carlson and others.
* 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:
* David Carlson (Clinical Cloud Solutions, LLC) - initial API and implementation
*******************************************************************************/
/**
*/
package org.eclipse.mdht.uml.fhir.core.valueset;
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>Substance Category Codes</b></em>',
* and utility methods for working with them.
* <!-- end-user-doc -->
* @see org.eclipse.mdht.uml.fhir.core.valueset.FhirValuesetPackage#getSubstanceCategoryCodes()
* @model annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='Substance Category Codes'"
* @generated
*/
public enum SubstanceCategoryCodes implements Enumerator {
/**
* The '<em><b>Allergen</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #ALLERGEN_VALUE
* @generated
* @ordered
*/
ALLERGEN(0, "allergen", "allergen"),
/**
* The '<em><b>Biological</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #BIOLOGICAL_VALUE
* @generated
* @ordered
*/
BIOLOGICAL(1, "biological", "biological"),
/**
* The '<em><b>Body</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #BODY_VALUE
* @generated
* @ordered
*/
BODY(2, "body", "body"),
/**
* The '<em><b>Chemical</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #CHEMICAL_VALUE
* @generated
* @ordered
*/
CHEMICAL(3, "chemical", "chemical"),
/**
* The '<em><b>Food</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #FOOD_VALUE
* @generated
* @ordered
*/
FOOD(4, "food", "food"),
/**
* The '<em><b>Drug</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #DRUG_VALUE
* @generated
* @ordered
*/
DRUG(5, "drug", "drug"),
/**
* The '<em><b>Material</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #MATERIAL_VALUE
* @generated
* @ordered
*/
MATERIAL(6, "material", "material");
/**
* The '<em><b>Allergen</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Allergen</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #ALLERGEN
* @model name="allergen"
* @generated
* @ordered
*/
public static final int ALLERGEN_VALUE = 0;
/**
* The '<em><b>Biological</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Biological</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #BIOLOGICAL
* @model name="biological"
* @generated
* @ordered
*/
public static final int BIOLOGICAL_VALUE = 1;
/**
* The '<em><b>Body</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Body</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #BODY
* @model name="body"
* @generated
* @ordered
*/
public static final int BODY_VALUE = 2;
/**
* The '<em><b>Chemical</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Chemical</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #CHEMICAL
* @model name="chemical"
* @generated
* @ordered
*/
public static final int CHEMICAL_VALUE = 3;
/**
* The '<em><b>Food</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Food</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #FOOD
* @model name="food"
* @generated
* @ordered
*/
public static final int FOOD_VALUE = 4;
/**
* The '<em><b>Drug</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Drug</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #DRUG
* @model name="drug"
* @generated
* @ordered
*/
public static final int DRUG_VALUE = 5;
/**
* The '<em><b>Material</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Material</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #MATERIAL
* @model name="material"
* @generated
* @ordered
*/
public static final int MATERIAL_VALUE = 6;
/**
* An array of all the '<em><b>Substance Category Codes</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static final SubstanceCategoryCodes[] VALUES_ARRAY =
new SubstanceCategoryCodes[] {
ALLERGEN,
BIOLOGICAL,
BODY,
CHEMICAL,
FOOD,
DRUG,
MATERIAL,
};
/**
* A public read-only list of all the '<em><b>Substance Category Codes</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final List<SubstanceCategoryCodes> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>Substance Category Codes</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 SubstanceCategoryCodes get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
SubstanceCategoryCodes result = VALUES_ARRAY[i];
if (result.toString().equals(literal)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Substance Category Codes</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 SubstanceCategoryCodes getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
SubstanceCategoryCodes result = VALUES_ARRAY[i];
if (result.getName().equals(name)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Substance Category Codes</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 SubstanceCategoryCodes get(int value) {
switch (value) {
case ALLERGEN_VALUE: return ALLERGEN;
case BIOLOGICAL_VALUE: return BIOLOGICAL;
case BODY_VALUE: return BODY;
case CHEMICAL_VALUE: return CHEMICAL;
case FOOD_VALUE: return FOOD;
case DRUG_VALUE: return DRUG;
case MATERIAL_VALUE: return MATERIAL;
}
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 SubstanceCategoryCodes(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;
}
} //SubstanceCategoryCodes