ca.uhn.fhir.model.dstu2.valueset.RulesetCodesEnum 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 RulesetCodesEnum {
/**
* Code Value: x12-4010
*/
X12_4010("x12-4010", "http://hl7.org/fhir/ruleset"),
/**
* Code Value: x12-5010
*/
X12_5010("x12-5010", "http://hl7.org/fhir/ruleset"),
/**
* Code Value: x12-7010
*/
X12_7010("x12-7010", "http://hl7.org/fhir/ruleset"),
/**
* Code Value: cdanet-v2
*/
CDANET_V2("cdanet-v2", "http://hl7.org/fhir/ruleset"),
/**
* Code Value: cdanet-v4
*/
CDANET_V4("cdanet-v4", "http://hl7.org/fhir/ruleset"),
/**
* Code Value: cpha-3
*/
CPHA_3("cpha-3", "http://hl7.org/fhir/ruleset"),
;
/**
* Identifier for this Value Set:
*
*/
public static final String VALUESET_IDENTIFIER = "";
/**
* Name for this Value Set:
* Ruleset Codes
*/
public static final String VALUESET_NAME = "Ruleset Codes";
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 (RulesetCodesEnum next : RulesetCodesEnum.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 RulesetCodesEnum forCode(String theCode) {
RulesetCodesEnum 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(RulesetCodesEnum theEnum) {
return theEnum.getCode();
}
@Override
public String toSystemString(RulesetCodesEnum theEnum) {
return theEnum.getSystem();
}
@Override
public RulesetCodesEnum fromCodeString(String theCodeString) {
return CODE_TO_ENUM.get(theCodeString);
}
@Override
public RulesetCodesEnum fromCodeString(String theCodeString, String theSystemString) {
Map map = SYSTEM_TO_CODE_TO_ENUM.get(theSystemString);
if (map == null) {
return null;
}
return map.get(theCodeString);
}
};
/**
* Constructor
*/
RulesetCodesEnum(String theCode, String theSystem) {
myCode = theCode;
mySystem = theSystem;
}
}