org.cqframework.fhir.npm.ILibraryReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cqf-fhir-npm Show documentation
Show all versions of cqf-fhir-npm Show documentation
The cqf-fhir-npm library for the Clinical Quality Language Java reference implementation
The newest version!
package org.cqframework.fhir.npm;
import java.io.IOException;
import java.io.InputStream;
import org.hl7.fhir.exceptions.FHIRFormatError;
import org.hl7.fhir.r5.model.Library;
public interface ILibraryReader {
public Library readLibrary(InputStream stream) throws FHIRFormatError, IOException;
}