blob: 947aa948980551346799e8a9bbbcd68a6fb4b7a3 [file] [log] [blame]
/**
*/
package org.hl7.fhir;
import java.lang.String;
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>Action Participant Type List</b></em>',
* and utility methods for working with them.
* <!-- end-user-doc -->
* @see org.hl7.fhir.FhirPackage#getActionParticipantTypeList()
* @model extendedMetaData="name='ActionParticipantType-list'"
* @generated
*/
public enum ActionParticipantTypeList implements Enumerator {
/**
* The '<em><b>Patient</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #PATIENT_VALUE
* @generated
* @ordered
*/
PATIENT(0, "patient", "patient"),
/**
* The '<em><b>Practitioner</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #PRACTITIONER_VALUE
* @generated
* @ordered
*/
PRACTITIONER(1, "practitioner", "practitioner"),
/**
* The '<em><b>Related Person</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #RELATED_PERSON_VALUE
* @generated
* @ordered
*/
RELATED_PERSON(2, "relatedPerson", "related-person"),
/**
* The '<em><b>Device</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #DEVICE_VALUE
* @generated
* @ordered
*/
DEVICE(3, "device", "device");
/**
* The '<em><b>Patient</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Patient
* <!-- end-model-doc -->
* @see #PATIENT
* @model name="patient"
* @generated
* @ordered
*/
public static final int PATIENT_VALUE = 0;
/**
* The '<em><b>Practitioner</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Practitioner
* <!-- end-model-doc -->
* @see #PRACTITIONER
* @model name="practitioner"
* @generated
* @ordered
*/
public static final int PRACTITIONER_VALUE = 1;
/**
* The '<em><b>Related Person</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Related Person
* <!-- end-model-doc -->
* @see #RELATED_PERSON
* @model name="relatedPerson" literal="related-person"
* @generated
* @ordered
*/
public static final int RELATED_PERSON_VALUE = 2;
/**
* The '<em><b>Device</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Device
* <!-- end-model-doc -->
* @see #DEVICE
* @model name="device"
* @generated
* @ordered
*/
public static final int DEVICE_VALUE = 3;
/**
* An array of all the '<em><b>Action Participant Type List</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static final ActionParticipantTypeList[] VALUES_ARRAY =
new ActionParticipantTypeList[] {
PATIENT,
PRACTITIONER,
RELATED_PERSON,
DEVICE,
};
/**
* A public read-only list of all the '<em><b>Action Participant Type List</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final List<ActionParticipantTypeList> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>Action Participant Type List</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 ActionParticipantTypeList get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
ActionParticipantTypeList result = VALUES_ARRAY[i];
if (result.toString().equals(literal)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Action Participant Type List</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 ActionParticipantTypeList getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
ActionParticipantTypeList result = VALUES_ARRAY[i];
if (result.getName().equals(name)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Action Participant Type List</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 ActionParticipantTypeList get(int value) {
switch (value) {
case PATIENT_VALUE: return PATIENT;
case PRACTITIONER_VALUE: return PRACTITIONER;
case RELATED_PERSON_VALUE: return RELATED_PERSON;
case DEVICE_VALUE: return DEVICE;
}
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 ActionParticipantTypeList(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;
}
} //ActionParticipantTypeList