All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hl7.fhir.dstu3.elementmodel.TurtleParser Maven / Gradle / Ivy

There is a newer version: 7.4.0
Show newest version
package org.hl7.fhir.dstu3.elementmodel;

import java.io.InputStream;
import java.io.OutputStream;

import org.hl7.fhir.dstu3.formats.IParser.OutputStyle;
import org.hl7.fhir.dstu3.context.IWorkerContext;

public class TurtleParser extends ParserBase {

	public TurtleParser(IWorkerContext theContext) {
		super(theContext);
	}

	@Override
	public Element parse(InputStream theStream) {
		throw new UnsupportedOperationException();
	}

	@Override
	public void compose(Element theE, OutputStream theDestination, OutputStyle theStyle, String theBase) throws Exception {
		throw new UnsupportedOperationException();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy