Interface QueryExecutionFactoryQuery

All Known Subinterfaces:
QueryExecutionFactory
All Known Implementing Classes:
QueryExecutionFactories.QueryExecutionFactoryOverRdfDataSource, QueryExecutionFactoryBackQuery, QueryExecutionFactoryBackString, QueryExecutionFactoryDataset, QueryExecutionFactoryDecorator, QueryExecutionFactoryOverQueryExecFactory, QueryExecutionFactoryOverSparqlQueryConnection, QueryExecutionFactoryQueryTransform, QueryExecutionFactoryWrapperBase
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface QueryExecutionFactoryQuery
Author:
Claus Stadler

Date: 7/23/11 Time: 9:30 PM

  • Method Summary

    Modifier and Type
    Method
    Description
    org.apache.jena.query.QueryExecution
    createQueryExecution(org.apache.jena.query.Query query)
     
    default org.apache.jena.rdf.model.Model
    execConstruct(org.apache.jena.query.Query query)
     
    default void
    execConstruct(org.apache.jena.rdf.model.Model model, org.apache.jena.query.Query query)
    Convenience method to execute a construct query and add the result to the model.
    default void
    execConstructDataset(org.apache.jena.query.Dataset dataset, org.apache.jena.query.Query query)
    Convenience method to execute a construct quads query and add the result to the dataset.
    default org.apache.jena.query.Dataset
    execConstructDataset(org.apache.jena.query.Query query)
     
    default org.apache.jena.rdf.model.Model
    execDescribe(org.apache.jena.query.Query query)
     
    default void
    execDescribe(org.apache.jena.rdf.model.Model model, org.apache.jena.query.Query query)
    Convenience method to execute a describe query and add the result to the model.
  • Method Details

    • createQueryExecution

      org.apache.jena.query.QueryExecution createQueryExecution(org.apache.jena.query.Query query)
    • execConstruct

      default org.apache.jena.rdf.model.Model execConstruct(org.apache.jena.query.Query query)
    • execConstructDataset

      default org.apache.jena.query.Dataset execConstructDataset(org.apache.jena.query.Query query)
    • execDescribe

      default org.apache.jena.rdf.model.Model execDescribe(org.apache.jena.query.Query query)
    • execConstruct

      default void execConstruct(org.apache.jena.rdf.model.Model model, org.apache.jena.query.Query query)
      Convenience method to execute a construct query and add the result to the model.
    • execConstructDataset

      default void execConstructDataset(org.apache.jena.query.Dataset dataset, org.apache.jena.query.Query query)
      Convenience method to execute a construct quads query and add the result to the dataset.
    • execDescribe

      default void execDescribe(org.apache.jena.rdf.model.Model model, org.apache.jena.query.Query query)
      Convenience method to execute a describe query and add the result to the model.