All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ca.uhn.fhir.model.dstu2.valueset.NutritionOrderStatusEnum Maven / Gradle / Ivy

The newest version!

package ca.uhn.fhir.model.dstu2.valueset;

import ca.uhn.fhir.model.api.*;
import java.util.HashMap;
import java.util.Map;

public enum NutritionOrderStatusEnum {

	/**
	 * Display: Proposed
* Code Value: proposed * * The request has been proposed. */ PROPOSED("proposed", "http://hl7.org/fhir/nutrition-order-status"), /** * Display: Draft
* Code Value: draft * * The request is in preliminary form prior to being sent. */ DRAFT("draft", "http://hl7.org/fhir/nutrition-order-status"), /** * Display: Planned
* Code Value: planned * * The request has been planned. */ PLANNED("planned", "http://hl7.org/fhir/nutrition-order-status"), /** * Display: Requested
* Code Value: requested * * The request has been placed. */ REQUESTED("requested", "http://hl7.org/fhir/nutrition-order-status"), /** * Display: Active
* Code Value: active * * The request is 'actionable', but not all actions that are implied by it have occurred yet. */ ACTIVE("active", "http://hl7.org/fhir/nutrition-order-status"), /** * Display: On-Hold
* Code Value: on-hold * * Actions implied by the request have been temporarily halted, but are expected to continue later. May also be called "suspended". */ ON_HOLD("on-hold", "http://hl7.org/fhir/nutrition-order-status"), /** * Display: Completed
* Code Value: completed * * All actions that are implied by the order have occurred and no continuation is planned (this will rarely be made explicit). */ COMPLETED("completed", "http://hl7.org/fhir/nutrition-order-status"), /** * Display: Cancelled
* Code Value: cancelled * * The request has been withdrawn and is no longer actionable. */ CANCELLED("cancelled", "http://hl7.org/fhir/nutrition-order-status"), ; /** * Identifier for this Value Set: * */ public static final String VALUESET_IDENTIFIER = ""; /** * Name for this Value Set: * NutritionOrderStatus */ public static final String VALUESET_NAME = "NutritionOrderStatus"; private static Map CODE_TO_ENUM = new HashMap(); private static Map> SYSTEM_TO_CODE_TO_ENUM = new HashMap>(); private final String myCode; private final String mySystem; static { for (NutritionOrderStatusEnum next : NutritionOrderStatusEnum.values()) { CODE_TO_ENUM.put(next.getCode(), next); if (!SYSTEM_TO_CODE_TO_ENUM.containsKey(next.getSystem())) { SYSTEM_TO_CODE_TO_ENUM.put(next.getSystem(), new HashMap()); } SYSTEM_TO_CODE_TO_ENUM.get(next.getSystem()).put(next.getCode(), next); } } /** * Returns the code associated with this enumerated value */ public String getCode() { return myCode; } /** * Returns the code system associated with this enumerated value */ public String getSystem() { return mySystem; } /** * Returns the enumerated value associated with this code */ public static NutritionOrderStatusEnum forCode(String theCode) { NutritionOrderStatusEnum retVal = CODE_TO_ENUM.get(theCode); return retVal; } /** * Converts codes to their respective enumerated values */ public static final IValueSetEnumBinder VALUESET_BINDER = new IValueSetEnumBinder() { @Override public String toCodeString(NutritionOrderStatusEnum theEnum) { return theEnum.getCode(); } @Override public String toSystemString(NutritionOrderStatusEnum theEnum) { return theEnum.getSystem(); } @Override public NutritionOrderStatusEnum fromCodeString(String theCodeString) { return CODE_TO_ENUM.get(theCodeString); } @Override public NutritionOrderStatusEnum fromCodeString(String theCodeString, String theSystemString) { Map map = SYSTEM_TO_CODE_TO_ENUM.get(theSystemString); if (map == null) { return null; } return map.get(theCodeString); } }; /** * Constructor */ NutritionOrderStatusEnum(String theCode, String theSystem) { myCode = theCode; mySystem = theSystem; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy