001package org.hl7.fhir.convertors.conv14_50.datatypes14_50.primitivetypes14_50;
002
003import org.hl7.fhir.convertors.context.ConversionContext14_50;
004import org.hl7.fhir.exceptions.FHIRException;
005
006public class Boolean14_50 {
007  public static org.hl7.fhir.r5.model.BooleanType convertBoolean(org.hl7.fhir.dstu2016may.model.BooleanType src) throws FHIRException {
008    org.hl7.fhir.r5.model.BooleanType tgt = new org.hl7.fhir.r5.model.BooleanType();
009    if (src.hasValue()) tgt.setValue(src.getValue());
010    ConversionContext14_50.INSTANCE.getVersionConvertor_14_50().copyElement(src, tgt);
011    return tgt;
012  }
013
014  public static org.hl7.fhir.dstu2016may.model.BooleanType convertBoolean(org.hl7.fhir.r5.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_50.INSTANCE.getVersionConvertor_14_50().copyElement(src, tgt);
018    return tgt;
019  }
020}