本文整理汇总了Java中org.hl7.fhir.dstu3.model.CodeableConcept.addCoding方法的典型用法代码示例。如果您正苦于以下问题:Java CodeableConcept.addCoding方法的具体用法?Java CodeableConcept.addCoding怎么用?Java CodeableConcept.addCoding使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.hl7.fhir.dstu3.model.CodeableConcept
的用法示例。
在下文中一共展示了CodeableConcept.addCoding方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: mapCodeToCodeableConcept
import org.hl7.fhir.dstu3.model.CodeableConcept; //导入方法依赖的package包/类
/**
* Helper function to convert a Code into a CodeableConcept. Takes an optional system, which
* replaces the Code.system in the resulting CodeableConcept if not null.
*
* @param from
* The Code to create a CodeableConcept from.
* @param system
* The system identifier, such as a URI. Optional; may be null.
* @return The converted CodeableConcept
*/
private static CodeableConcept mapCodeToCodeableConcept(Code from, String system) {
CodeableConcept to = new CodeableConcept();
if (from.display != null) {
to.setText(from.display);
}
Coding coding = new Coding();
coding.setCode(from.code);
coding.setDisplay(from.display);
if (system == null) {
coding.setSystem(from.system);
} else {
coding.setSystem(system);
}
to.addCoding(coding);
return to;
}