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 Boolean14_40 {
007  public static org.hl7.fhir.r4.model.BooleanType convertBoolean(org.hl7.fhir.dstu2016may.model.BooleanType src) throws FHIRException {
008    org.hl7.fhir.r4.model.BooleanType tgt = new org.hl7.fhir.r4.model.BooleanType();
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.BooleanType convertBoolean(org.hl7.fhir.r4.model.BooleanType src) throws FHIRException {
015    org.hl7.fhir.dstu2016may.model.BooleanType tgt = new org.hl7.fhir.dstu2016may.model.BooleanType();
016    if (src.hasValue()) tgt.setValue(src.getValue());
017    ConversionContext14_40.INSTANCE.getVersionConvertor_14_40().copyElement(src, tgt);
018    return tgt;
019  }
020}