blob: fdec9376c05513ae0c7a5bfe9b5c147ba8ce661f [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>Device Metric Calibration State</b></em>',
* and utility methods for working with them.
* <!-- end-user-doc -->
* @see org.eclipse.mdht.uml.fhir.core.valueset.FhirValuesetPackage#getDeviceMetricCalibrationState()
* @model
* @generated
*/
public enum DeviceMetricCalibrationState implements Enumerator {
/**
* The '<em><b>Notcalibrated</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #NOTCALIBRATED_VALUE
* @generated
* @ordered
*/
NOTCALIBRATED(0, "notcalibrated", "notcalibrated"),
/**
* The '<em><b>Calibrationrequired</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #CALIBRATIONREQUIRED_VALUE
* @generated
* @ordered
*/
CALIBRATIONREQUIRED(1, "calibrationrequired", "calibrationrequired"),
/**
* The '<em><b>Calibrated</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #CALIBRATED_VALUE
* @generated
* @ordered
*/
CALIBRATED(2, "calibrated", "calibrated"),
/**
* The '<em><b>Unspecified</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #UNSPECIFIED_VALUE
* @generated
* @ordered
*/
UNSPECIFIED(3, "unspecified", "unspecified");
/**
* The '<em><b>Notcalibrated</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Notcalibrated</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #NOTCALIBRATED
* @model name="notcalibrated"
* annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='not-calibrated'"
* @generated
* @ordered
*/
public static final int NOTCALIBRATED_VALUE = 0;
/**
* The '<em><b>Calibrationrequired</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Calibrationrequired</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #CALIBRATIONREQUIRED
* @model name="calibrationrequired"
* annotation="http://www.eclipse.org/uml2/2.0.0/UML originalName='calibration-required'"
* @generated
* @ordered
*/
public static final int CALIBRATIONREQUIRED_VALUE = 1;
/**
* The '<em><b>Calibrated</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Calibrated</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #CALIBRATED
* @model name="calibrated"
* @generated
* @ordered
*/
public static final int CALIBRATED_VALUE = 2;
/**
* The '<em><b>Unspecified</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Unspecified</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #UNSPECIFIED
* @model name="unspecified"
* @generated
* @ordered
*/
public static final int UNSPECIFIED_VALUE = 3;
/**
* An array of all the '<em><b>Device Metric Calibration State</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static final DeviceMetricCalibrationState[] VALUES_ARRAY =
new DeviceMetricCalibrationState[] {
NOTCALIBRATED,
CALIBRATIONREQUIRED,
CALIBRATED,
UNSPECIFIED,
};
/**
* A public read-only list of all the '<em><b>Device Metric Calibration State</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final List<DeviceMetricCalibrationState> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>Device Metric Calibration State</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 DeviceMetricCalibrationState get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
DeviceMetricCalibrationState result = VALUES_ARRAY[i];
if (result.toString().equals(literal)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Device Metric Calibration State</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 DeviceMetricCalibrationState getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
DeviceMetricCalibrationState result = VALUES_ARRAY[i];
if (result.getName().equals(name)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Device Metric Calibration State</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 DeviceMetricCalibrationState get(int value) {
switch (value) {
case NOTCALIBRATED_VALUE: return NOTCALIBRATED;
case CALIBRATIONREQUIRED_VALUE: return CALIBRATIONREQUIRED;
case CALIBRATED_VALUE: return CALIBRATED;
case UNSPECIFIED_VALUE: return UNSPECIFIED;
}
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 DeviceMetricCalibrationState(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;
}
} //DeviceMetricCalibrationState