001package org.hl7.fhir.convertors.conv43_50.datatypes43_50.general43_50;
002
003import org.hl7.fhir.convertors.context.ConversionContext43_50;
004import org.hl7.fhir.exceptions.FHIRException;
005
006public class Ratio43_50 {
007  public static org.hl7.fhir.r5.model.Ratio convertRatio(org.hl7.fhir.r4b.model.Ratio src) throws FHIRException {
008    if (src == null) return null;
009    org.hl7.fhir.r5.model.Ratio tgt = new org.hl7.fhir.r5.model.Ratio();
010    ConversionContext43_50.INSTANCE.getVersionConvertor_43_50().copyElement(src, tgt);
011    if (src.hasNumerator()) tgt.setNumerator(Quantity43_50.convertQuantity(src.getNumerator()));
012    if (src.hasDenominator()) tgt.setDenominator(Quantity43_50.convertQuantity(src.getDenominator()));
013    return tgt;
014  }
015
016  public static org.hl7.fhir.r4b.model.Ratio convertRatio(org.hl7.fhir.r5.model.Ratio src) throws FHIRException {
017    if (src == null) return null;
018    org.hl7.fhir.r4b.model.Ratio tgt = new org.hl7.fhir.r4b.model.Ratio();
019    ConversionContext43_50.INSTANCE.getVersionConvertor_43_50().copyElement(src, tgt);
020    if (src.hasNumerator()) tgt.setNumerator(Quantity43_50.convertQuantity(src.getNumerator()));
021    if (src.hasDenominator()) tgt.setDenominator(Quantity43_50.convertQuantity(src.getDenominator()));
022    return tgt;
023  }
024}