org.eclipse.rdf4j.common.lang.service.FileFormatServiceRegistry Java Examples

The following examples show how to use org.eclipse.rdf4j.common.lang.service.FileFormatServiceRegistry. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: HttpServerUtilTest.java    From rdf4j with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
/**
 * @throws java.lang.Exception
 */
@Before
public void setUp() throws Exception {
	FileFormatServiceRegistry<? extends FileFormat, ?> registry = TupleQueryResultWriterRegistry.getInstance();

	tupleQueryMimeTypes = new ArrayList<>(16);
	for (FileFormat format : registry.getKeys()) {
		tupleQueryMimeTypes.addAll(format.getMIMETypes());
	}
}