001package org.hl7.fhir.convertors.conv14_30.datatypes14_30.complextypes14_30; 002 003import org.hl7.fhir.convertors.context.ConversionContext14_30; 004import org.hl7.fhir.exceptions.FHIRException; 005 006public class Range14_30 { 007 public static org.hl7.fhir.dstu3.model.Range convertRange(org.hl7.fhir.dstu2016may.model.Range src) throws FHIRException { 008 if (src == null || src.isEmpty()) return null; 009 org.hl7.fhir.dstu3.model.Range tgt = new org.hl7.fhir.dstu3.model.Range(); 010 ConversionContext14_30.INSTANCE.getVersionConvertor_14_30().copyElement(src, tgt); 011 if (src.hasLow()) tgt.setLow(SimpleQuantity14_30.convertSimpleQuantity(src.getLow())); 012 if (src.hasHigh()) tgt.setHigh(SimpleQuantity14_30.convertSimpleQuantity(src.getHigh())); 013 return tgt; 014 } 015 016 public static org.hl7.fhir.dstu2016may.model.Range convertRange(org.hl7.fhir.dstu3.model.Range src) throws FHIRException { 017 if (src == null || src.isEmpty()) return null; 018 org.hl7.fhir.dstu2016may.model.Range tgt = new org.hl7.fhir.dstu2016may.model.Range(); 019 ConversionContext14_30.INSTANCE.getVersionConvertor_14_30().copyElement(src, tgt); 020 if (src.hasLow()) tgt.setLow(SimpleQuantity14_30.convertSimpleQuantity(src.getLow())); 021 if (src.hasHigh()) tgt.setHigh(SimpleQuantity14_30.convertSimpleQuantity(src.getHigh())); 022 return tgt; 023 } 024}