ca.uhn.fhir.model.dstu2.valueset.ContactPointSystemEnum 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 ContactPointSystemEnum {
/**
* Display: Phone
* Code Value: phone
*
* The value is a telephone number used for voice calls. Use of full international numbers starting with + is recommended to enable automatic dialing support but not required.
*/
PHONE("phone", "http://hl7.org/fhir/contact-point-system"),
/**
* Display: Fax
* Code Value: fax
*
* The value is a fax machine. Use of full international numbers starting with + is recommended to enable automatic dialing support but not required.
*/
FAX("fax", "http://hl7.org/fhir/contact-point-system"),
/**
* Display: Email
* Code Value: email
*
* The value is an email address.
*/
EMAIL("email", "http://hl7.org/fhir/contact-point-system"),
/**
* Display: Pager
* Code Value: pager
*
* The value is a pager number. These may be local pager numbers that are only usable on a particular pager system.
*/
PAGER("pager", "http://hl7.org/fhir/contact-point-system"),
/**
* Display: URL
* Code Value: other
*
* A contact that is not a phone, fax, or email address. The format of the value SHOULD be a URL. This is intended for various personal contacts including blogs, Twitter, Facebook, etc. Do not use for email addresses. If this is not a URL, then it will require human interpretation.
*/
URL("other", "http://hl7.org/fhir/contact-point-system"),
;
/**
* Identifier for this Value Set:
*
*/
public static final String VALUESET_IDENTIFIER = "";
/**
* Name for this Value Set:
* ContactPointSystem
*/
public static final String VALUESET_NAME = "ContactPointSystem";
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 (ContactPointSystemEnum next : ContactPointSystemEnum.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 ContactPointSystemEnum forCode(String theCode) {
ContactPointSystemEnum 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(ContactPointSystemEnum theEnum) {
return theEnum.getCode();
}
@Override
public String toSystemString(ContactPointSystemEnum theEnum) {
return theEnum.getSystem();
}
@Override
public ContactPointSystemEnum fromCodeString(String theCodeString) {
return CODE_TO_ENUM.get(theCodeString);
}
@Override
public ContactPointSystemEnum fromCodeString(String theCodeString, String theSystemString) {
Map map = SYSTEM_TO_CODE_TO_ENUM.get(theSystemString);
if (map == null) {
return null;
}
return map.get(theCodeString);
}
};
/**
* Constructor
*/
ContactPointSystemEnum(String theCode, String theSystem) {
myCode = theCode;
mySystem = theSystem;
}
}