it.unibz.inf.ontop.rdf4j.predefined.parsing.PredefinedQueryConfigEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ontop-rdf4j Show documentation
Show all versions of ontop-rdf4j Show documentation
This is the rdf4j API implementation based on Ontop
The newest version!
package it.unibz.inf.ontop.rdf4j.predefined.parsing;
import com.google.common.collect.ImmutableMap;
import org.eclipse.rdf4j.model.IRI;
import org.eclipse.rdf4j.query.Query;
import java.util.Map;
import java.util.Optional;
public interface PredefinedQueryConfigEntry {
Optional getName();
Optional getDescription();
Query.QueryType getQueryType();
/**
* False by default
*/
boolean shouldReturn404IfEmpty();
/**
* False by default
*/
boolean isResultStreamingEnabled();
Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy