Interface WhereClause<T extends AbstractQueryBuilder<T>>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      T addBind​(java.lang.String expression, java.lang.Object var)
      Add a bind statement to the query http://www.w3.org/TR/2013/REC-sparql11-query-20130321/#rGraphGraphPattern.
      T addBind​(Expr expression, java.lang.Object var)
      Add a bind statement to the query * http://www.w3.org/TR/2013/REC-sparql11-query-20130321/#rGraphGraphPattern.
      T addFilter​(java.lang.String expression)
      Adds a filter to the where clause
      T addFilter​(Expr expression)
      Adds a filter to the where clause Use ExprFactory or NodeValue static or the AbstractQueryBuilder.makeExpr methods to create the expression.
      T addGraph​(java.lang.Object graph, java.lang.Object subject, java.lang.Object predicate, java.lang.Object object)
      Add a graph statement to the query as per http://www.w3.org/TR/2013/REC-sparql11 -query-20130321/#rGraphGraphPattern.
      T addGraph​(java.lang.Object graph, AbstractQueryBuilder<?> subQuery)
      Add a graph statement to the query as per http://www.w3.org/TR/2013/REC-sparql11 -query-20130321/#rGraphGraphPattern.
      T addGraph​(java.lang.Object graph, FrontsTriple triple)
      Add a graph statement to the query as per http://www.w3.org/TR/2013/REC-sparql11 -query-20130321/#rGraphGraphPattern.
      T addGraph​(java.lang.Object graph, Triple triple)
      Add a graph statement to the query as per http://www.w3.org/TR/2013/REC-sparql11 -query-20130321/#rGraphGraphPattern.
      T addGraph​(java.lang.Object graph, TriplePath triplePath)
      Add a graph statement to the query as per http://www.w3.org/TR/2013/REC-sparql11 -query-20130321/#rGraphGraphPattern.
      T addMinus​(AbstractQueryBuilder<?> t)
      Add a minus clause to the query.
      T addOptional​(java.lang.Object s, java.lang.Object p, java.lang.Object o)
      Adds an optional triple or triple path to the where clause.
      T addOptional​(AbstractQueryBuilder<?> t)
      Adds an optional group pattern to the where clause.
      T addOptional​(FrontsTriple t)
      Adds an optional triple as to the where clause.
      T addOptional​(Triple t)
      Adds an optional triple to the where clause.
      T addOptional​(TriplePath t)
      Adds an optional triple path to the where clause.
      T addSubQuery​(AbstractQueryBuilder<?> subQuery)
      Add a sub query.
      T addUnion​(AbstractQueryBuilder<?> union)
      Add a union.
      T addWhere​(java.lang.Object s, java.lang.Object p, java.lang.Object o)
      Adds a triple or triple path to the where clause.
      T addWhere​(AbstractQueryBuilder<?> whereClause)
      Adds the elements from the whereClause to this where Clause.
      T addWhere​(FrontsTriple t)
      Adds a triple to the where clause.
      T addWhere​(Triple t)
      Adds a triple to the where clause.
      T addWhere​(TriplePath t)
      Adds a triple path to the where clause.
      T addWhereValueRow​(java.lang.Object... values)
      Add objects as a row of values.
      T addWhereValueRow​(java.util.Collection<?> values)
      Add a collection of objects as row of values.
      T addWhereValueVar​(java.lang.Object var)
      Add a variable or variable and values to the value statement.
      T addWhereValueVar​(java.lang.Object var, java.lang.Object... values)
      Add a variable and values to the value statement.
      <K extends java.util.Collection<?>>
      T
      addWhereValueVars​(java.util.Map<?,​K> dataTable)
      Add a data table to the value statement.
      T clearWhereValues()
      Reset the values table in the where clause to the initial undefined state.
      WhereHandler getWhereHandler()
      Get the Where handler for this clause.
      java.util.Map<Var,​java.util.List<Node>> getWhereValuesMap()
      Get an unmodifiable map of vars from the where clause values and their values.
      java.util.List<Var> getWhereValuesVars()
      Get an unmodifiable list of vars from the where clause values in the order that they appear in the values table.
      Node list​(java.lang.Object... objs)
      Create a list node from a list of objects as per RDF Collections.
    • Method Detail

      • addWhere

        T addWhere​(Triple t)
        Adds a triple to the where clause.
        Parameters:
        t - The triple path to add
        Returns:
        This Builder for chaining.
      • addWhere

        T addWhere​(TriplePath t)
        Adds a triple path to the where clause.
        Parameters:
        t - The triple path to add
        Returns:
        This Builder for chaining.
      • addWhere

        T addWhere​(FrontsTriple t)
        Adds a triple to the where clause.
        Parameters:
        t - The triple to add
        Returns:
        This Builder for chaining.
      • addWhere

        T addWhere​(AbstractQueryBuilder<?> whereClause)
        Adds the elements from the whereClause to this where Clause.
        Parameters:
        whereClause - The whereClause to add to this statement.
        Returns:
        This Builder for chaining.
      • addWhereValueVar

        T addWhereValueVar​(java.lang.Object var)
        Add a variable or variable and values to the value statement. The first var (or first item in a collection) is converted to a variable using the makeVar strategy. A variable may be added multiple times, doing so will append values to the list of variable values. The order in which variables are added to the values table is preserved. Adding a collection as the var will use the first object in the collection as the var and the remaining objects as values. Values are created using makeNode() strategy except that null values are converted to UNDEF.
        Parameters:
        var - The variable or collection to add.
        Returns:
        The builder for chaining.
        See Also:
        AbstractQueryBuilder.makeNode(Object), Converters.makeVar(Object)
      • addWhereValueVar

        T addWhereValueVar​(java.lang.Object var,
                           java.lang.Object... values)
        Add a variable and values to the value statement. The var is converted to a variable using the makeVar strategy. A variable may be added multiple times, doing so will append values to the list of variable values. The order in which variables are added to the values table is preserved. Values are created using makeNode() strategy except that null values are converted to UNDEF.
        Parameters:
        var - The variable to add.
        values - The values for the variable
        Returns:
        The builder for chaining.
        See Also:
        AbstractQueryBuilder.makeNode(Object), Converters.makeVar(Object)
      • addWhereValueVars

        <K extends java.util.Collection<?>> T addWhereValueVars​(java.util.Map<?,​K> dataTable)
        Add a data table to the value statement. Each key in the map is used converted into a variable using the makeVar strategy. The order in which variables are added to the values table is preserved. Variables are added in the iteration order for the map. It may be advisable to use a LinkedHashMap to preserver the insert order.
        Parameters:
        dataTable - The data table to add.
        Returns:
        The builder for chaining.
        See Also:
        Each item in the value collection is converted into a node using makeNode() strategy except that null values are converted to UNDEF. If there are already values in the value statement the data table is adds as follows: If the variable already exists in the table the map values are appended to the list of values If the variable does not exist in the table and there are other variables defined, an appropriate number of nulls is added to the front of the map values to create UNDEF entries for the existing rows If there are variables in the value statement that are not specified in the map additional UNDEF entries are appended to them to account for new rows that are added. , AbstractQueryBuilder.makeNode(Object), Converters.makeVar(Object)
      • addWhereValueRow

        T addWhereValueRow​(java.lang.Object... values)
        Add objects as a row of values. This method is different from the other methods in that the values are appended to each of the variables in the clause. There must be sufficient entries in the list to provide data for each variable in the table. Values objects are converted to nodes using the makeNode strategy. Variables will always be in the order added to the values table.
        Parameters:
        values - the collection of values to add.
        Returns:
        The builder for chaining.
        See Also:
        AbstractQueryBuilder.makeNode(Object)
      • addWhereValueRow

        T addWhereValueRow​(java.util.Collection<?> values)
        Add a collection of objects as row of values. This method is different from the other methods in that the values are appended to each of the variables in the clause. There must be sufficient entries in the list to provide data for each variable in the table. Values objects are converted to nodes using the makeNode strategy. Variables will always be in the order added to the values table.
        Parameters:
        values - the collection of values to add.
        Returns:
        The builder for chaining.
        See Also:
        AbstractQueryBuilder.makeNode(Object)
      • getWhereValuesVars

        java.util.List<Var> getWhereValuesVars()
        Get an unmodifiable list of vars from the where clause values in the order that they appear in the values table.
        Returns:
        an unmodifiable list of vars.
      • getWhereValuesMap

        java.util.Map<Var,​java.util.List<Node>> getWhereValuesMap()
        Get an unmodifiable map of vars from the where clause values and their values. Null values are considered as UNDEF values.
        Returns:
        an unmodifiable map of vars and their values.
      • clearWhereValues

        T clearWhereValues()
        Reset the values table in the where clause to the initial undefined state. Used primarily to reset the builder values table to a known state.
      • addOptional

        T addOptional​(Triple t)
        Adds an optional triple to the where clause.
        Parameters:
        t - The triple to add
        Returns:
        This Builder for chaining.
      • addOptional

        T addOptional​(TriplePath t)
        Adds an optional triple path to the where clause.
        Parameters:
        t - The triple path to add
        Returns:
        This Builder for chaining.
      • addOptional

        T addOptional​(FrontsTriple t)
        Adds an optional triple as to the where clause.
        Parameters:
        t - The triple to add
        Returns:
        This Builder for chaining.
      • addOptional

        T addOptional​(AbstractQueryBuilder<?> t)
        Adds an optional group pattern to the where clause.
        Parameters:
        t - The select builder to add as an optional pattern
        Returns:
        This Builder for chaining.
      • addFilter

        T addFilter​(java.lang.String expression)
             throws ParseException
        Adds a filter to the where clause
        Parameters:
        expression - the expression to evaluate for the filter.
        Returns:
        Throws:
        ParseException - If the expression can not be parsed.
      • addFilter

        T addFilter​(Expr expression)
        Adds a filter to the where clause Use ExprFactory or NodeValue static or the AbstractQueryBuilder.makeExpr methods to create the expression.
        Parameters:
        expression - the expression to evaluate for the filter.
        Returns:
        See Also:
        ExprFactory, NodeValue, AbstractQueryBuilder.makeExpr(String)
      • addSubQuery

        T addSubQuery​(AbstractQueryBuilder<?> subQuery)
        Add a sub query.
        Parameters:
        subQuery - The subquery as defined by a SelectBuilder.
        Returns:
        This builder for chaining.
      • addUnion

        T addUnion​(AbstractQueryBuilder<?> union)
        Add a union.
        Parameters:
        union - The union as defined by a SelectBuilder.
        Returns:
        This builder for chaining.
      • addGraph

        T addGraph​(java.lang.Object graph,
                   AbstractQueryBuilder<?> subQuery)
        Add a graph statement to the query as per http://www.w3.org/TR/2013/REC-sparql11 -query-20130321/#rGraphGraphPattern. See AbstractQueryBuilder.makeNode(java.lang.Object) for conversion of the graph param.
        Parameters:
        graph - The iri or variable identifying the graph.
        subQuery - The graph to add.
        Returns:
        This builder for chaining.
      • addGraph

        T addGraph​(java.lang.Object graph,
                   FrontsTriple triple)
        Add a graph statement to the query as per http://www.w3.org/TR/2013/REC-sparql11 -query-20130321/#rGraphGraphPattern. See AbstractQueryBuilder.makeNode(java.lang.Object) for conversion of the graph param.
        Parameters:
        graph - The iri or variable identifying the graph.
        triple - a single s, p, o triple for the query.
        Returns:
        This builder for chaining.
      • addGraph

        T addGraph​(java.lang.Object graph,
                   java.lang.Object subject,
                   java.lang.Object predicate,
                   java.lang.Object object)
        Add a graph statement to the query as per http://www.w3.org/TR/2013/REC-sparql11 -query-20130321/#rGraphGraphPattern. See AbstractQueryBuilder.makeNode(java.lang.Object) for conversion of the graph param.
        Parameters:
        graph - The iri or variable identifying the graph.
        subject - The subject for the graph query
        predicate - The predicate for the graph query.
        object - The object for the graph query.
        Returns:
        This builder for chaining.
      • addGraph

        T addGraph​(java.lang.Object graph,
                   Triple triple)
        Add a graph statement to the query as per http://www.w3.org/TR/2013/REC-sparql11 -query-20130321/#rGraphGraphPattern. See AbstractQueryBuilder.makeNode(java.lang.Object) for conversion of the graph param.
        Parameters:
        graph - The iri or variable identifying the graph.
        triple - a single triple for the query.
        Returns:
        This builder for chaining.
      • addGraph

        T addGraph​(java.lang.Object graph,
                   TriplePath triplePath)
        Add a graph statement to the query as per http://www.w3.org/TR/2013/REC-sparql11 -query-20130321/#rGraphGraphPattern. See AbstractQueryBuilder.makeNode(java.lang.Object) for conversion of the graph param.
        Parameters:
        graph - The iri or variable identifying the graph.
        triplePath - a single triple path for the query.
        Returns:
        This builder for chaining.
      • addBind

        T addBind​(Expr expression,
                  java.lang.Object var)
        Add a bind statement to the query * http://www.w3.org/TR/2013/REC-sparql11-query-20130321/#rGraphGraphPattern.
        Parameters:
        expression - The expression to bind to the var.
        var - The variable to bind to.
        Returns:
        This builder for chaining.
      • addBind

        T addBind​(java.lang.String expression,
                  java.lang.Object var)
           throws ParseException
        Add a bind statement to the query http://www.w3.org/TR/2013/REC-sparql11-query-20130321/#rGraphGraphPattern.
        Parameters:
        expression - The expression to bind to the var.
        var - The variable to bind to.
        Returns:
        This builder for chaining.
        Throws:
        ParseException
      • getWhereHandler

        WhereHandler getWhereHandler()
        Get the Where handler for this clause.
        Returns:
        The WhereHandler used by this clause.
      • list

        Node list​(java.lang.Object... objs)
        Create a list node from a list of objects as per RDF Collections. http://www.w3.org/TR/2013/REC-sparql11-query-20130321/#collections See AbstractQueryBuilder.makeNode(java.lang.Object) for conversion of the param values.

        usage:

        • list( param1, param2, param3, ... )
        • addWhere( list( param1, param2, param3, ... ), p, o )
        • addOptional( list( param1, param2, param3, ... ), p, o )

        Parameters:
        objs - the list of objects for the list.
        Returns:
        the first blank node in the list.
      • addMinus

        T addMinus​(AbstractQueryBuilder<?> t)
        Add a minus clause to the query. https://www.w3.org/TR/2013/REC-sparql11-query-20130321/#rMinusGraphPattern
        Parameters:
        t - The select builder to add as a minus pattern
        Returns:
        this builder for chaining