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

ca.uhn.fhir.model.dstu2.valueset.GoalStatusEnum 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 GoalStatusEnum {

	/**
	 * Display: Proposed
* Code Value: proposed * * A goal is proposed for this patient */ PROPOSED("proposed", "http://hl7.org/fhir/goal-status"), /** * Display: Planned
* Code Value: planned * * A goal is planned for this patient */ PLANNED("planned", "http://hl7.org/fhir/goal-status"), /** * Display: Accepted
* Code Value: accepted * * A proposed goal was accepted */ ACCEPTED("accepted", "http://hl7.org/fhir/goal-status"), /** * Display: Rejected
* Code Value: rejected * * A proposed goal was rejected */ REJECTED("rejected", "http://hl7.org/fhir/goal-status"), /** * Display: In Progress
* Code Value: in-progress * * The goal is being sought but has not yet been reached. (Also applies if goal was reached in the past but there has been regression and goal is being sought again) */ IN_PROGRESS("in-progress", "http://hl7.org/fhir/goal-status"), /** * Display: Achieved
* Code Value: achieved * * The goal has been met and no further action is needed */ ACHIEVED("achieved", "http://hl7.org/fhir/goal-status"), /** * Display: Sustaining
* Code Value: sustaining * * The goal has been met, but ongoing activity is needed to sustain the goal objective */ SUSTAINING("sustaining", "http://hl7.org/fhir/goal-status"), /** * Display: On Hold
* Code Value: on-hold * * The goal remains a long term objective but is no longer being actively pursued for a temporary period of time. */ ON_HOLD("on-hold", "http://hl7.org/fhir/goal-status"), /** * Display: Cancelled
* Code Value: cancelled * * The goal is no longer being sought */ CANCELLED("cancelled", "http://hl7.org/fhir/goal-status"), ; /** * Identifier for this Value Set: * */ public static final String VALUESET_IDENTIFIER = ""; /** * Name for this Value Set: * GoalStatus */ public static final String VALUESET_NAME = "GoalStatus"; 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 (GoalStatusEnum next : GoalStatusEnum.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 GoalStatusEnum forCode(String theCode) { GoalStatusEnum 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(GoalStatusEnum theEnum) { return theEnum.getCode(); } @Override public String toSystemString(GoalStatusEnum theEnum) { return theEnum.getSystem(); } @Override public GoalStatusEnum fromCodeString(String theCodeString) { return CODE_TO_ENUM.get(theCodeString); } @Override public GoalStatusEnum fromCodeString(String theCodeString, String theSystemString) { Map map = SYSTEM_TO_CODE_TO_ENUM.get(theSystemString); if (map == null) { return null; } return map.get(theCodeString); } }; /** * Constructor */ GoalStatusEnum(String theCode, String theSystem) { myCode = theCode; mySystem = theSystem; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy