Uses of Class
com.hp.hpl.jena.reasoner.TriplePattern

Packages that use TriplePattern
com.hp.hpl.jena.reasoner The Jena2 reasoner subsystem is designed to allow a range of inference engines to be plugged into Jena. 
com.hp.hpl.jena.reasoner.rulesys Provides a selection of simple rule engines for Jena inference models. 
com.hp.hpl.jena.reasoner.transitiveReasoner This package contains a reasoner which supports transitive-reflexive closure of subPropertyOf and subClassOf relations. 
com.hp.hpl.jena.util Miscellaneous collection of utility classes. 
 

Uses of TriplePattern in com.hp.hpl.jena.reasoner
 

Methods in com.hp.hpl.jena.reasoner with parameters of type TriplePattern
 boolean TriplePattern.compatibleWith(TriplePattern pattern)
          Compare two patterns for compatibility - i.e.
 boolean FGraph.contains(TriplePattern pattern)
          Return true if the given pattern occurs somewhere in the find sequence.
 boolean Finder.contains(TriplePattern pattern)
          Return true if the given pattern occurs somewhere in the find sequence.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<Triple> FGraph.find(TriplePattern pattern)
          Basic pattern lookup interface.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<Triple> Finder.find(TriplePattern pattern)
          Basic pattern lookup interface.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<Triple> BaseInfGraph.find(TriplePattern pattern)
          Basic pattern lookup interface.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<Triple> FGraph.findWithContinuation(TriplePattern pattern, Finder continuation)
          Extended find interface used in situations where the implementator may or may not be able to answer the complete query.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<Triple> Finder.findWithContinuation(TriplePattern pattern, Finder continuation)
          Extended find interface used in situations where the implementator may or may not be able to answer the complete query.
abstract  com.hp.hpl.jena.util.iterator.ExtendedIterator<Triple> BaseInfGraph.findWithContinuation(TriplePattern pattern, Finder continuation)
          Extended find interface used in situations where the implementator may or may not be able to answer the complete query.
 boolean TriplePattern.subsumes(TriplePattern arg)
          Compare two patterns and return true if arg is a more specific (more grounded) version of this one.
 boolean TriplePattern.variantOf(TriplePattern pattern)
          Test if a pattern is just a variant of this pattern.
 

Uses of TriplePattern in com.hp.hpl.jena.reasoner.rulesys
 

Methods in com.hp.hpl.jena.reasoner.rulesys with parameters of type TriplePattern
 com.hp.hpl.jena.util.iterator.ExtendedIterator<Triple> LPBackwardRuleInfGraph.find(TriplePattern pattern)
          Basic pattern lookup interface.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<Triple> FBRuleInfGraph.find(TriplePattern pattern)
          Basic pattern lookup interface.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<Triple> BasicForwardRuleInfGraph.find(TriplePattern pattern)
          Basic pattern lookup interface.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<Triple> BackwardRuleInfGraphI.findDataMatches(TriplePattern pattern)
          Match a pattern just against the stored data (raw data, schema, axioms) but no backchaining derivation.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<Triple> LPBackwardRuleInfGraph.findDataMatches(TriplePattern pattern)
          Match a pattern just against the stored data (raw data, schema, axioms) but no derivation.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<Triple> FBRuleInfGraph.findDataMatches(TriplePattern pattern)
          Search the combination of data and deductions graphs for the given triple pattern.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<Triple> FBRuleInfGraph.findFull(TriplePattern pattern)
          Internal variant of find which omits the filters which block illegal RDF data.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<Triple> LPBackwardRuleInfGraph.findWithContinuation(TriplePattern pattern, Finder continuation)
          Extended find interface used in situations where the implementator may or may not be able to answer the complete query.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<Triple> FBRuleInfGraph.findWithContinuation(TriplePattern pattern, Finder continuation)
          Extended find interface used in situations where the implementator may or may not be able to answer the complete query.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<Triple> BasicForwardRuleInfGraph.findWithContinuation(TriplePattern pattern, Finder continuation)
          Extended find interface used in situations where the implementator may or may not be able to answer the complete query.
 Triple BindingEnvironment.instantiate(TriplePattern pattern)
          Instantiate a triple pattern against the current environment.
 

Uses of TriplePattern in com.hp.hpl.jena.reasoner.transitiveReasoner
 

Methods in com.hp.hpl.jena.reasoner.transitiveReasoner with parameters of type TriplePattern
 boolean TransitiveGraphCache.contains(TriplePattern pattern)
          Return true if the given pattern occurs somewhere in the find sequence.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<Triple> TransitiveInfGraph.find(TriplePattern pattern)
          Basic pattern lookup interface.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<Triple> TransitiveGraphCache.find(TriplePattern pattern)
          Basic pattern lookup interface.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<Triple> TransitiveInfGraph.findWithContinuation(TriplePattern pattern, Finder continuation)
          Extended find interface used in situations where the implementator may or may not be able to answer the complete query.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<Triple> TransitiveGraphCache.findWithContinuation(TriplePattern pattern, Finder continuation)
          Extended find interface used in situations where the implementator may or may not be able to answer the complete query.
 Finder TransitiveEngine.getFinder(TriplePattern pattern, Finder continuation)
          Return a Finder instance appropriate for the given query.
 

Uses of TriplePattern in com.hp.hpl.jena.util
 

Methods in com.hp.hpl.jena.util with parameters of type TriplePattern
static String PrintUtil.print(TriplePattern triple)
          Return a simplified print string for a TriplePattern
 



Licenced under the Apache License, Version 2.0