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

ca.uhn.fhir.model.valueset.BundleEntrySearchModeEnum Maven / Gradle / Ivy

There is a newer version: 7.4.5
Show newest version
/*
 * #%L
 * HAPI FHIR - Core Library
 * %%
 * Copyright (C) 2014 - 2024 Smile CDR, Inc.
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */
package ca.uhn.fhir.model.valueset;

import ca.uhn.fhir.model.api.IValueSetEnumBinder;
import ca.uhn.fhir.util.CoverageIgnore;

import java.util.HashMap;
import java.util.Map;

@CoverageIgnore
public enum BundleEntrySearchModeEnum {
	MATCH("match", "http://hl7.org/fhir/search-entry-mode"),
	INCLUDE("include", "http://hl7.org/fhir/search-entry-mode"),
	OUTCOME("outcome", "http://hl7.org/fhir/search-entry-mode"),
	;

	/**
	 * Identifier for this Value Set:
	 * http://hl7.org/fhir/vs/address-use
	 */
	public static final String VALUESET_IDENTIFIER = "http://hl7.org/fhir/bundle-entry-status";

	/**
	 * Name for this Value Set:
	 * AddressUse
	 */
	public static final String VALUESET_NAME = "BundleEntryStatus";

	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 (BundleEntrySearchModeEnum next : BundleEntrySearchModeEnum.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 BundleEntrySearchModeEnum forCode(String theCode) {
		BundleEntrySearchModeEnum retVal = CODE_TO_ENUM.get(theCode);
		return retVal;
	}

	/**
	 * Converts codes to their respective enumerated values
	 */
	public static final IValueSetEnumBinder VALUESET_BINDER =
			new IValueSetEnumBinder() {

				private static final long serialVersionUID = -3836039426814809083L;

				@Override
				public String toCodeString(BundleEntrySearchModeEnum theEnum) {
					return theEnum.getCode();
				}

				@Override
				public String toSystemString(BundleEntrySearchModeEnum theEnum) {
					return theEnum.getSystem();
				}

				@Override
				public BundleEntrySearchModeEnum fromCodeString(String theCodeString) {
					return CODE_TO_ENUM.get(theCodeString);
				}

				@Override
				public BundleEntrySearchModeEnum fromCodeString(String theCodeString, String theSystemString) {
					Map map = SYSTEM_TO_CODE_TO_ENUM.get(theSystemString);
					if (map == null) {
						return null;
					}
					return map.get(theCodeString);
				}
			};

	/**
	 * Constructor
	 */
	BundleEntrySearchModeEnum(String theCode, String theSystem) {
		myCode = theCode;
		mySystem = theSystem;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy