Uses of Interface
org.apache.jena.reasoner.InfGraph
-
Packages that use InfGraph Package Description org.apache.jena.rdf.model A package for creating and manipulating RDF graphs.org.apache.jena.rdf.model.impl This package contains implementations of the interfaces defined in the .model package, eg ModelCom for Model, ResourceImpl for Resource, and so on.org.apache.jena.reasoner The Jena2 reasoner subsystem is designed to allow a range of inference engines to be plugged into Jena.org.apache.jena.reasoner.rulesys Provides a selection of simple rule engines for Jena inference models.org.apache.jena.reasoner.rulesys.impl Internal implementation objects used by the rule system interpreters and compilers.org.apache.jena.reasoner.transitiveReasoner This package contains a reasoner which supports transitive-reflexive closure of subPropertyOf and subClassOf relations. -
-
Uses of InfGraph in org.apache.jena.rdf.model
Methods in org.apache.jena.rdf.model with parameters of type InfGraph Modifier and Type Method Description static InfModel
ModelFactory. createInfModel(InfGraph g)
Build an inference model from an InfGraph. -
Uses of InfGraph in org.apache.jena.rdf.model.impl
Methods in org.apache.jena.rdf.model.impl that return InfGraph Modifier and Type Method Description InfGraph
InfModelImpl. getInfGraph()
Return the underlying inference graph for this model.Constructors in org.apache.jena.rdf.model.impl with parameters of type InfGraph Constructor Description InfModelImpl(InfGraph infgraph)
Constructor. -
Uses of InfGraph in org.apache.jena.reasoner
Classes in org.apache.jena.reasoner that implement InfGraph Modifier and Type Class Description class
BaseInfGraph
A base level implementation of the InfGraph interface.Methods in org.apache.jena.reasoner that return InfGraph Modifier and Type Method Description InfGraph
Reasoner. bind(Graph data)
Attach the reasoner to a set of RDF data to process.InfGraph
BaseInfGraph. cloneWithPremises(Graph premises)
Return a new inference graph which is a clone of the current graph together with an additional set of data premises. -
Uses of InfGraph in org.apache.jena.reasoner.rulesys
Subinterfaces of InfGraph in org.apache.jena.reasoner.rulesys Modifier and Type Interface Description interface
BackwardRuleInfGraphI
This interface collects together those operations that the backchaining engine needs to invoke in the parent InfGraph.interface
ForwardRuleInfGraphI
This interface collects together the operations on the InfGraph which are needed to support the forward rule engine.Classes in org.apache.jena.reasoner.rulesys that implement InfGraph Modifier and Type Class Description class
BasicForwardRuleInfGraph
An inference graph interface that runs a set of forward chaining rules to conclusion on each added triple and stores the entire result set.class
FBRuleInfGraph
An inference graph that uses a mixture of forward and backward chaining rules.class
LPBackwardRuleInfGraph
Inference graph for accessing the LP version of the backward chaining rule engine.class
RDFSRuleInfGraph
Customization of the generic rule inference graph for RDFS inference.class
RETERuleInfGraph
RETE implementation of the forward rule inference graph.Methods in org.apache.jena.reasoner.rulesys that return InfGraph Modifier and Type Method Description InfGraph
BasicForwardRuleReasoner. bind(Graph data)
Attach the reasoner to a set of RDF data to process.InfGraph
FBRuleReasoner. bind(Graph data)
Attach the reasoner to a set of RDF data to process.InfGraph
GenericRuleReasoner. bind(Graph data)
Attach the reasoner to a set of RDF data to process.InfGraph
LPBackwardRuleReasoner. bind(Graph data)
Attach the reasoner to a set of RDF data to process.InfGraph
OWLFBRuleReasoner. bind(Graph data)
Attach the reasoner to a set of RDF data to process.InfGraph
OWLMicroReasoner. bind(Graph data)
Attach the reasoner to a set of RDF data to process.InfGraph
OWLMiniReasoner. bind(Graph data)
Attach the reasoner to a set of RDF data to process.InfGraph
RDFSRuleReasoner. bind(Graph data)
Attach the reasoner to a set of RDF data to process.InfGraph
RuleContext. getGraph()
Returns the parent inference graph.InfGraph
OWLFBRuleReasoner. getPreload()
Get the single static precomputed rule closure.Constructors in org.apache.jena.reasoner.rulesys with parameters of type InfGraph Constructor Description RuleDerivation(Rule rule, Triple conclusion, java.util.List<Triple> matches, InfGraph infGraph)
Constructor -
Uses of InfGraph in org.apache.jena.reasoner.rulesys.impl
Methods in org.apache.jena.reasoner.rulesys.impl that return InfGraph Modifier and Type Method Description InfGraph
BBRuleContext. getGraph()
InfGraph
BFRuleContext. getGraph()
Returns the graph.InfGraph
RETERuleContext. getGraph()
Returns the graph.Constructors in org.apache.jena.reasoner.rulesys.impl with parameters of type InfGraph Constructor Description TempNodeCache(InfGraph infgraph)
Constructor. -
Uses of InfGraph in org.apache.jena.reasoner.transitiveReasoner
Classes in org.apache.jena.reasoner.transitiveReasoner that implement InfGraph Modifier and Type Class Description class
TransitiveInfGraph
Implementation of InfGraph used by the TransitiveReasoner.Methods in org.apache.jena.reasoner.transitiveReasoner that return InfGraph Modifier and Type Method Description InfGraph
TransitiveReasoner. bind(Graph data)
Attach the reasoner to a set of RDF ddata to process.
-