001package org.hl7.fhir.convertors.conv40_50.datatypes40_50.primitive40_50;
002
003import org.hl7.fhir.convertors.context.ConversionContext40_50;
004import org.hl7.fhir.exceptions.FHIRException;
005
006public class Decimal40_50 {
007  public static org.hl7.fhir.r5.model.DecimalType convertDecimal(org.hl7.fhir.r4.model.DecimalType src) throws FHIRException {
008    org.hl7.fhir.r5.model.DecimalType tgt = src.hasValue() ? new org.hl7.fhir.r5.model.DecimalType(src.getValueAsString()) : new org.hl7.fhir.r5.model.DecimalType();
009    ConversionContext40_50.INSTANCE.getVersionConvertor_40_50().copyElement(src, tgt);
010    return tgt;
011  }
012
013  public static org.hl7.fhir.r4.model.DecimalType convertDecimal(org.hl7.fhir.r5.model.DecimalType src) throws FHIRException {
014    org.hl7.fhir.r4.model.DecimalType tgt = src.hasValue() ? new org.hl7.fhir.r4.model.DecimalType(src.getValueAsString()) : new org.hl7.fhir.r4.model.DecimalType();
015    ConversionContext40_50.INSTANCE.getVersionConvertor_40_50().copyElement(src, tgt);
016    return tgt;
017  }
018
019  public static org.hl7.fhir.r5.model.Quantity convertDecimalToQuantity(org.hl7.fhir.r4.model.DecimalType src) {
020    org.hl7.fhir.r5.model.Quantity tgt = new org.hl7.fhir.r5.model.Quantity();
021    if (src.hasValue()) {
022      tgt.setValue(src.getValue());
023      tgt.setSystem("http://unitsofmeasure.org");
024      tgt.setCode("1");
025    }
026    ConversionContext40_50.INSTANCE.getVersionConvertor_40_50().copyElement(src, tgt);
027    return tgt;
028  }
029}