Class CustomGraphQueryInferencer

    • Method Detail

      • setFields

        public final void setFields​(QueryLanguage language,
                                    String queryText,
                                    String matcherText)
                             throws MalformedQueryException,
                                    SailException
        Called in order to set all the fields needed for the inferencer to function.
        Parameters:
        language - language that queryText and matcherText are expressed in
        queryText - a query that returns an RDF graph of inferred statements to be added to the underlying Sail
        matcherText - a query that returns an RDF graph of existing inferred statements already added previously
        Throws:
        MalformedQueryException - if there is a problem parsing either of the given queries
        SailException - if a problem occurs interpreting the rule pattern
      • init

        public void init()
                  throws SailException
        Description copied from interface: Sail
        Initializes the Sail. Care should be taken that required initialization parameters have been set before this method is called. Please consult the specific Sail implementation for information about the relevant parameters.
        Specified by:
        init in interface Sail
        Overrides:
        init in class SailWrapper
        Throws:
        SailException - If the Sail could not be initialized.
      • getWatchSubjects

        public Collection<Value> getWatchSubjects()
        Exposed for test purposes.
        Returns:
        a computed collection of the statement subjects that, when added or removed, trigger an update of inferred statements
      • getWatchPredicates

        public Collection<Value> getWatchPredicates()
        Exposed for test purposes.
        Returns:
        a computed collection of the statement predicates that, when added or removed, trigger an update of inferred statements
      • getWatchObjects

        public Collection<Value> getWatchObjects()
        Exposed for test purposes.
        Returns:
        a computed collection of the statement objects that, when added or removed, trigger an update of inferred statements