
001package org.hl7.fhir.convertors.conv14_40.datatypes14_40.complextypes14_40; 002 003import org.hl7.fhir.convertors.context.ConversionContext14_40; 004import org.hl7.fhir.exceptions.FHIRException; 005 006public class Ratio14_40 { 007 public static org.hl7.fhir.r4.model.Ratio convertRatio(org.hl7.fhir.dstu2016may.model.Ratio src) throws FHIRException { 008 if (src == null || src.isEmpty()) return null; 009 org.hl7.fhir.r4.model.Ratio tgt = new org.hl7.fhir.r4.model.Ratio(); 010 ConversionContext14_40.INSTANCE.getVersionConvertor_14_40().copyElement(src, tgt); 011 if (src.hasNumerator()) tgt.setNumerator(Quantity14_40.convertQuantity(src.getNumerator())); 012 if (src.hasDenominator()) tgt.setDenominator(Quantity14_40.convertQuantity(src.getDenominator())); 013 return tgt; 014 } 015 016 public static org.hl7.fhir.dstu2016may.model.Ratio convertRatio(org.hl7.fhir.r4.model.Ratio src) throws FHIRException { 017 if (src == null || src.isEmpty()) return null; 018 org.hl7.fhir.dstu2016may.model.Ratio tgt = new org.hl7.fhir.dstu2016may.model.Ratio(); 019 ConversionContext14_40.INSTANCE.getVersionConvertor_14_40().copyElement(src, tgt); 020 if (src.hasNumerator()) tgt.setNumerator(Quantity14_40.convertQuantity(src.getNumerator())); 021 if (src.hasDenominator()) tgt.setDenominator(Quantity14_40.convertQuantity(src.getDenominator())); 022 return tgt; 023 } 024}