![JAR search and dependency download from the Maven repository](/logo.png)
org.hl7.elm_modelinfo.r1.serializing.ModelInfoReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of model Show documentation
Show all versions of model Show documentation
The model library for the Clinical Quality Language Java reference implementation
package org.hl7.elm_modelinfo.r1.serializing;
import java.io.*;
import java.net.URI;
import java.net.URL;
import org.hl7.elm_modelinfo.r1.ModelInfo;
public interface ModelInfoReader {
public ModelInfo read(File src) throws IOException;
public ModelInfo read(Reader src) throws IOException;
public ModelInfo read(InputStream src) throws IOException;
public ModelInfo read(URL url) throws IOException;
public ModelInfo read(URI uri) throws IOException;
public ModelInfo read(String string) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy