Interface FilterTuple

    • Method Detail

      • hasFilter

        boolean hasFilter()
        Returns:
        true if this expression has a filter to apply
      • addFilterExpr

        void addFilterExpr​(FilterExpr expr)
        register a new filter expression. If the expr has already a filter registered, the new expression is added to a ConjunctiveFilterExpr.
        Parameters:
        expr -
      • addBoundFilter

        void addBoundFilter​(String varName,
                            Value value)
        register a filter that can be directly expressed as a binding, e.g. SELECT * WHERE { ?s p o . FILTER (?s = X) } is equivalent to SELECT * WHERE { X p o . }
        Parameters:
        varName -
        value -
      • getFreeVars

        List<String> getFreeVars()
        Returns:
        the free variables of this expression
      • getBoundFilters

        BindingSet getBoundFilters()
        Returns bound filter bindings, that need to be added as additional bindings to the final result
        Returns:
        the bound filters, or null