001package org.hl7.fhir.convertors.conv14_30.datatypes14_30.primitivetypes14_30;
002
003import org.hl7.fhir.convertors.context.ConversionContext14_30;
004import org.hl7.fhir.exceptions.FHIRException;
005
006public class Boolean14_30 {
007  public static org.hl7.fhir.dstu3.model.BooleanType convertBoolean(org.hl7.fhir.dstu2016may.model.BooleanType src) throws FHIRException {
008    org.hl7.fhir.dstu3.model.BooleanType tgt = new org.hl7.fhir.dstu3.model.BooleanType();
009    if (src.hasValue()) tgt.setValue(src.getValue());
010    ConversionContext14_30.INSTANCE.getVersionConvertor_14_30().copyElement(src, tgt);
011    return tgt;
012  }
013
014  public static org.hl7.fhir.dstu2016may.model.BooleanType convertBoolean(org.hl7.fhir.dstu3.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_30.INSTANCE.getVersionConvertor_14_30().copyElement(src, tgt);
018    return tgt;
019  }
020}