001package org.hl7.fhir.convertors.conv14_40.datatypes14_40.primitivetypes14_40;
002
003import org.hl7.fhir.convertors.context.ConversionContext14_40;
004import org.hl7.fhir.exceptions.FHIRException;
005
006public class Decimal14_40 {
007  public static org.hl7.fhir.r4.model.DecimalType convertDecimal(org.hl7.fhir.dstu2016may.model.DecimalType src) throws FHIRException {
008    org.hl7.fhir.r4.model.DecimalType tgt = new org.hl7.fhir.r4.model.DecimalType();
009    if (src.hasValue()) tgt.setValue(src.getValue());
010    ConversionContext14_40.INSTANCE.getVersionConvertor_14_40().copyElement(src, tgt);
011    return tgt;
012  }
013
014  public static org.hl7.fhir.dstu2016may.model.DecimalType convertDecimal(org.hl7.fhir.r4.model.DecimalType src) throws FHIRException {
015    org.hl7.fhir.dstu2016may.model.DecimalType tgt = new org.hl7.fhir.dstu2016may.model.DecimalType();
016    if (src.hasValue()) tgt.setValue(src.getValue());
017    ConversionContext14_40.INSTANCE.getVersionConvertor_14_40().copyElement(src, tgt);
018    return tgt;
019  }
020}