Interface QueryExecBuilder

    • Method Detail

      • query

        QueryExecBuilder query​(java.lang.String queryString)
        Set the query.
      • substitution

        QueryExecBuilder substitution​(Binding binding)
        Provide a set of (Var, Node) for substitution in the query when QueryExec is built.
      • substitution

        QueryExecBuilder substitution​(Var var,
                                      Node value)
        Provide a (Var, Node) for substitution in the query when QueryExec is built.
      • substitution

        default QueryExecBuilder substitution​(java.lang.String var,
                                              Node value)
        Provide a (var name, Node) for substitution in the query when QueryExec is built.
      • timeout

        QueryExecBuilder timeout​(long value,
                                 java.util.concurrent.TimeUnit timeUnit)
        Set the overall query execution timeout.
        Specified by:
        timeout in interface QueryExecMod
      • select

        default RowSet select()
        Build and execute as a SELECT query.
      • construct

        default Graph construct()
        Build and execute as a CONSTRUCT query.
      • describe

        default Graph describe()
        Build and execute as a CONSTRUCT query.
      • ask

        default boolean ask()
        Build and execute as an ASK query.