blob: 6d2410cccbb491c883f78f37da1a8d6211186e10 [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>Response Type List</b></em>',
* and utility methods for working with them.
* <!-- end-user-doc -->
* @see org.hl7.fhir.FhirPackage#getResponseTypeList()
* @model extendedMetaData="name='ResponseType-list'"
* @generated
*/
public enum ResponseTypeList implements Enumerator {
/**
* The '<em><b>Ok</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #OK_VALUE
* @generated
* @ordered
*/
OK(0, "ok", "ok"),
/**
* The '<em><b>Transient Error</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #TRANSIENT_ERROR_VALUE
* @generated
* @ordered
*/
TRANSIENT_ERROR(1, "transientError", "transient-error"),
/**
* The '<em><b>Fatal Error</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #FATAL_ERROR_VALUE
* @generated
* @ordered
*/
FATAL_ERROR(2, "fatalError", "fatal-error");
/**
* The '<em><b>Ok</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The message was accepted and processed without error.
* <!-- end-model-doc -->
* @see #OK
* @model name="ok"
* @generated
* @ordered
*/
public static final int OK_VALUE = 0;
/**
* The '<em><b>Transient Error</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* Some internal unexpected error occurred - wait and try again. Note - this is usually used for things like database unavailable, which may be expected to resolve, though human intervention may be required.
* <!-- end-model-doc -->
* @see #TRANSIENT_ERROR
* @model name="transientError" literal="transient-error"
* @generated
* @ordered
*/
public static final int TRANSIENT_ERROR_VALUE = 1;
/**
* The '<em><b>Fatal Error</b></em>' literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The message was rejected because of some content in it. There is no point in re-sending without change. The response narrative SHALL describe the issue.
* <!-- end-model-doc -->
* @see #FATAL_ERROR
* @model name="fatalError" literal="fatal-error"
* @generated
* @ordered
*/
public static final int FATAL_ERROR_VALUE = 2;
/**
* An array of all the '<em><b>Response Type List</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static final ResponseTypeList[] VALUES_ARRAY =
new ResponseTypeList[] {
OK,
TRANSIENT_ERROR,
FATAL_ERROR,
};
/**
* A public read-only list of all the '<em><b>Response Type List</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final List<ResponseTypeList> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>Response 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 ResponseTypeList get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
ResponseTypeList result = VALUES_ARRAY[i];
if (result.toString().equals(literal)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Response 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 ResponseTypeList getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
ResponseTypeList result = VALUES_ARRAY[i];
if (result.getName().equals(name)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Response 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 ResponseTypeList get(int value) {
switch (value) {
case OK_VALUE: return OK;
case TRANSIENT_ERROR_VALUE: return TRANSIENT_ERROR;
case FATAL_ERROR_VALUE: return FATAL_ERROR;
}
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 ResponseTypeList(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;
}
} //ResponseTypeList