Class SelectPlan


  • public class SelectPlan
    extends Object
    Executes the generated SPARQL SELECT query.
    Author:
    Maxime Lefrançois
    • Constructor Detail

      • SelectPlan

        public SelectPlan​(SPARQLExtQuery query,
                          boolean isSelectType,
                          List<Var> signature)
        Constructor.
        Parameters:
        query - the SPARQL SELECT part of the query.
        isSelectType - if the query itself is a SELECT query
        signature - the signature of the query
    • Method Detail

      • getVars

        public List<Var> getVars()
      • exec

        public final void exec​(List<Var> variables,
                               List<Binding> values,
                               Context context,
                               Consumer<ResultSet> output)
        Updates a values block with the execution of a SPARQL SELECT query.
        Parameters:
        variables - the variables
        values - the list of bindings.
        context - the execution context.