blob: bc2a6d42ca055dba8bfa400c2be327d867737112 [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>Provenance Entity Role List</b></em>',
* and utility methods for working with them.
* <!-- end-user-doc -->
* @see org.hl7.fhir.FhirPackage#getProvenanceEntityRoleList()
* @model extendedMetaData="name='ProvenanceEntityRole-list'"
* @generated
*/
public enum ProvenanceEntityRoleList implements Enumerator {
/**
* The '<em><b>Derivation</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #DERIVATION_VALUE
* @generated
* @ordered
*/
DERIVATION(0, "derivation", "derivation"),
/**
* The '<em><b>Revision</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #REVISION_VALUE
* @generated
* @ordered
*/
REVISION(1, "revision", "revision"),
/**
* The '<em><b>Quotation</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #QUOTATION_VALUE
* @generated
* @ordered
*/
QUOTATION(2, "quotation", "quotation"),
/**
* The '<em><b>Source</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #SOURCE_VALUE
* @generated
* @ordered
*/
SOURCE(3, "source", "source");
/**
* The '<em><b>Derivation</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a preexisting entity.
* <!-- end-model-doc -->
* @see #DERIVATION
* @model name="derivation"
* @generated
* @ordered
*/
public static final int DERIVATION_VALUE = 0;
/**
* The '<em><b>Revision</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A derivation for which the resulting entity is a revised version of some original.
* <!-- end-model-doc -->
* @see #REVISION
* @model name="revision"
* @generated
* @ordered
*/
public static final int REVISION_VALUE = 1;
/**
* The '<em><b>Quotation</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The repeat of (some or all of) an entity, such as text or image, by someone who may or may not be its original author.
* <!-- end-model-doc -->
* @see #QUOTATION
* @model name="quotation"
* @generated
* @ordered
*/
public static final int QUOTATION_VALUE = 2;
/**
* The '<em><b>Source</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* A primary source for a topic refers to something produced by some agent with direct experience and knowledge about the topic, at the time of the topic's study, without benefit from hindsight.
* <!-- end-model-doc -->
* @see #SOURCE
* @model name="source"
* @generated
* @ordered
*/
public static final int SOURCE_VALUE = 3;
/**
* An array of all the '<em><b>Provenance Entity Role List</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static final ProvenanceEntityRoleList[] VALUES_ARRAY =
new ProvenanceEntityRoleList[] {
DERIVATION,
REVISION,
QUOTATION,
SOURCE,
};
/**
* A public read-only list of all the '<em><b>Provenance Entity Role List</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final List<ProvenanceEntityRoleList> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>Provenance Entity Role 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 ProvenanceEntityRoleList get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
ProvenanceEntityRoleList result = VALUES_ARRAY[i];
if (result.toString().equals(literal)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Provenance Entity Role 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 ProvenanceEntityRoleList getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
ProvenanceEntityRoleList result = VALUES_ARRAY[i];
if (result.getName().equals(name)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Provenance Entity Role 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 ProvenanceEntityRoleList get(int value) {
switch (value) {
case DERIVATION_VALUE: return DERIVATION;
case REVISION_VALUE: return REVISION;
case QUOTATION_VALUE: return QUOTATION;
case SOURCE_VALUE: return SOURCE;
}
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 ProvenanceEntityRoleList(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;
}
} //ProvenanceEntityRoleList