Uses of Interface
org.apache.jena.graph.Graph
Packages that use Graph
Package
Description
This package defines the enhanced node and graph classes; an enhanced
node is one embedded in a particular enhanced graph.
This package defines the Graph and Node family of classes, which
form the underlying datatypes of the Jena system.
This package defines simple composite graphs - union, intersection,
difference, and update-tracking.
This package provides basic implementations of Graph interfaces
such as EventManager and Capabilities.
Various memory-based implementations of interfaces,
specifically GraphMem for memory-based Graphs.
Provides a set of abstractions and convenience classes for accessing and manipluating ontologies
represented in RDF.
Provides default implementations for the abstractions defined in the
org.apache.jena.ontology package.A package for creating and manipulating RDF graphs.
This package contains implementations of the interfaces defined
in the .model package, eg ModelCom for Model, ResourceImpl
for Resource, and so on.
A parser for RDF/XML.
The Jena2 reasoner subsystem is designed to allow a range of inference
engines to be plugged into Jena.
Provides a selection of simple rule engines for Jena inference models.
Internal implementation objects used by the rule system interpreters
and compilers.
This package contains a reasoner which supports transitive-reflexive closure
of subPropertyOf and subClassOf relations.
This package defines some classes common to the Jena API
and SPI levels, in particular the JenaException class from which
all Jena-specific exceptions hang, and the interface PrefixMapping
for translation to and from QNames.
Miscellaneous collection of utility classes.
-
Uses of Graph in org.apache.jena.enhanced
Methods in org.apache.jena.enhanced that return GraphModifier and TypeMethodDescriptionEnhGraph.asGraph()Answer the normal graph that this enhanced graph is wrapping.Constructors in org.apache.jena.enhanced with parameters of type GraphModifierConstructorDescriptionEnhGraph(Graph g, Personality<RDFNode> p) Construct an enhanced graph from the given underlying graph, and a factory for generating enhanced nodes. -
Uses of Graph in org.apache.jena.graph
Fields in org.apache.jena.graph declared as GraphMethods in org.apache.jena.graph that return GraphModifier and TypeMethodDescriptionstatic GraphGraphMemFactory.createDefaultGraph()Answer a memory-based graph.static GraphGraphMemFactory.createDefaultGraphSameTerm()Answer a memory-based graph with "same term" semantics This method will continue to provide the preferred general purpose "same term" graph.static GraphGraphMemFactory.createDefaultGraphSameValue()Answer a memory-based graph with "same value" semantics used in Jena2, Jena3 and Jena4 for in-memory graphs.static GraphGraphMemFactory.createGraphMem()Deprecated, for removal: This API element is subject to removal in a future version.To be renamed.static GraphGraphMemFactory.createGraphMem2()A graph that stores triples in memory.static GraphGraphMemFactory.createGraphMem2Basic()Deprecated, for removal: This API element is subject to removal in a future version.static GraphGraphMemFactory.createGraphMem2Roaring()Deprecated, for removal: This API element is subject to removal in a future version.static GraphGraphMemFactory.createGraphMemBasic()A graph that stores triples in memory.static GraphGraphMemFactory.createGraphMemForModel()This function will track the preferred general purpose graph for the Model API.static GraphGraphMemFactory.createGraphMemRoaring()A graph that stores triples in memory.static GraphGraphMemFactory.empty()Immutable graph with no triplesNode_Graph.getGraph()Node.getGraph()Get the graph for a graph term (N3 formula), otherwise die horriblyMethods in org.apache.jena.graph with parameters of type GraphModifier and TypeMethodDescriptionstatic voidstatic voidstatic voidstatic voidAdd triples into the destination (arg 1) from the source (arg 2)static booleanGraphUtil.containsNode(Graph graph, Node node) Does the graph use the node anywhere as a subject, predicate or object?static NodeNodeFactory.createGraphNode(Graph graph) Create a graph node.static voidstatic voidstatic voidstatic voidGraphUtil.deleteFrom(Graph dstGraph, Graph srcGraph) Delete triples in the destination (arg 1) as given in the source (arg 2).static voidGraphUtil.deleteLoopDst(Graph dstGraph, Graph srcGraph) Delete the triple insrcGraphfromdstGraphby checking the contents ofdsgGraphagainst thesrcGraph.static voidGraphUtil.deleteLoopSrc(Graph dstGraph, Graph srcGraph) Delete triples insrcGraphfromdstGraphby looping onsrcGraph.booleanDeprecated, for removal: This API element is subject to removal in a future version.To be removed.static ExtendedIterator<Triple>Answer an iterator covering all the triples in the specified graph.booleanGraph.isIsomorphicWith(Graph g) Compare this graph with another using the method described in http://www.w3.org/TR/rdf-concepts#section-Graph-syntax Note: this implementation does not handle correctly blank nodes in quoted triples (RDF-star).static ExtendedIterator<Node>GraphUtil.listObjects(Graph g, Node s, Node p) Return an iterator over the unique objects with a given subject and object.static ExtendedIterator<Node>GraphUtil.listPredicates(Graph g, Node s, Node o) Return an iterator over the unique predicate between s and o.static ExtendedIterator<Node>GraphUtil.listSubjects(Graph g, Node p, Node o) Return an iterator over the unique subjects with predicate p and object o.voidGraphListener.notifyAddArray(Graph g, Triple[] triples) Method called when an array of triples has been added to the graph.voidGraphListenerBase.notifyAddArray(Graph g, Triple[] triples) voidGraphListener.notifyAddGraph(Graph g, Graph added) Method called when another graphghas been used to specify the triples added to our attached graph.voidGraphListenerBase.notifyAddGraph(Graph g, Graph added) voidGraphEventManager.notifyAddIterator(Graph g, List<Triple> triples) Notify all attached listeners that an iterator [of triples] has been added to the graph; its content has been captured in the listtriples.voidGraphListener.notifyAddIterator(Graph g, Iterator<Triple> it) Method called when an iterator [of triples] has been added to the graphvoidGraphListenerBase.notifyAddIterator(Graph g, Iterator<Triple> it) voidGraphListener.notifyAddList(Graph g, List<Triple> triples) Method called when a list [of triples] has been added to the graph.voidGraphListenerBase.notifyAddList(Graph g, List<Triple> triples) voidGraphListener.notifyAddTriple(Graph g, Triple t) Method called when a single triple has been added to the graph.voidGraphListenerBase.notifyAddTriple(Graph g, Triple t) voidGraphListener.notifyDeleteArray(Graph g, Triple[] triples) Method called when an array of triples has been deleted from the graph.voidGraphListenerBase.notifyDeleteArray(Graph g, Triple[] triples) voidGraphListener.notifyDeleteGraph(Graph g, Graph removed) Method to call when another graph has been used to specify the triples deleted from our attached graph.voidGraphListenerBase.notifyDeleteGraph(Graph g, Graph removed) voidGraphEventManager.notifyDeleteIterator(Graph g, List<Triple> triples) Notify all attached listeners that an iterator [of triples] has been removed from the graph; its content has been captured in the listtriples.voidGraphListener.notifyDeleteIterator(Graph g, Iterator<Triple> it) Method called when an iterator [of triples] has been deleted from the graph.voidGraphListenerBase.notifyDeleteIterator(Graph g, Iterator<Triple> it) voidGraphListener.notifyDeleteList(Graph g, List<Triple> L) Method called when a list [of triples] has been deleted from the graph.voidGraphListenerBase.notifyDeleteList(Graph g, List<Triple> triples) voidGraphListener.notifyDeleteTriple(Graph g, Triple t) Method called when a single triple has been deleted from the graph.voidGraphListenerBase.notifyDeleteTriple(Graph g, Triple t) voidGraphListener.notifyEvent(Graph source, Object value) method to call for a general event.voidGraphListenerBase.notifyEvent(Graph source, Object value) static voidA safe and cautious remove() function that converts the remove to a number ofdelete(Triple)operations.NodeVisitor.visitGraph(Node_Graph it, Graph graph) Constructors in org.apache.jena.graph with parameters of type Graph -
Uses of Graph in org.apache.jena.graph.compose
Classes in org.apache.jena.graph.compose that implement GraphModifier and TypeClassDescriptionclassBase class for graphs that are composed of multiple sub-graphs.classGraph operation for wrapping a base graph and leaving it unchanged while recording all the attempted updates for later access.classClass representing the dynamic set difference L - R of two graphs.classDisjointUnion - a version of Union that assumes the graphs are disjoint, and hence thatfindneed not do duplicate-removal.classBase class for the two-operand composition operations; has two graphs L and RclassThe dynamic intersection of two graphs L and R.classA graph implementation that presents the union of zero or more subgraphs, one of which is distinguished as the updateable graph.classA base class for composition graphs that are composed from zero or more sub-graphs (thus providing a basis for polyadic composition operators).classA class representing the dynamic union of two graphs.Methods in org.apache.jena.graph.compose that return GraphModifier and TypeMethodDescriptionDelta.getAdditions()Answer the graph of all triples added.Polyadic.getBaseGraph()Answer the distinguished graph for the composition, which will be the graph that receives triple adds and deletes.Delta.getDeletions()Answer the graph of all triples removed.Dyadic.getL()Answer the left (first) operand of this Dyadic.Dyadic.getR()Answer the right (second) operand of this Dyadic.Polyadic.getRequiredBaseGraph()Answer the distinguished graph for the composition, which will be the graph that receives triple adds and deletes.Methods in org.apache.jena.graph.compose that return types with arguments of type GraphModifier and TypeMethodDescriptionPolyadic.getSubGraphs()Answer a list of the graphs other than the updateable (base) graphMethods in org.apache.jena.graph.compose with parameters of type GraphModifier and TypeMethodDescriptionvoidAdd the given graph to this union.voidAdd the given graph to this composition.booleanGeneric dependsOn, true iff it depends on either of the subgraphs.booleanAnswer true if this graph contains the given graph as a sub-component.Answer aPredicatethat will accept any triple that is an edge of graph g.static ExtendedIterator<Triple>CompositionBase.rejecting(ExtendedIterator<Triple> i, Graph seen) Answer an iterator over the elements ofithat are not in the graphseen.voidPolyadic.removeGraph(Graph graph) Remove the given graph from this composition.voidPolyadic.setBaseGraph(Graph graph) Set the designated updateable graph for this composition.Constructors in org.apache.jena.graph.compose with parameters of type GraphModifierConstructorDescriptionDifference(Graph L, Graph R) Initialise a graph representing the difference L - R.DisjointUnion(Graph L, Graph R) When the graph is constructed, copy the prefix mappings of both components into this prefix mapping.Intersection(Graph L, Graph R) MultiUnion(Graph[] graphs) Construct a union of all of the given graphsConstruct a composition of all of the given graphsConstructor parameters in org.apache.jena.graph.compose with type arguments of type Graph -
Uses of Graph in org.apache.jena.graph.impl
Subinterfaces of Graph in org.apache.jena.graph.implModifier and TypeInterfaceDescriptioninterfaceGraphWithPerform is an implementation interface that extends Graph with the performAdd and performDelete methods used by GraphBase to invoke non-notifying versions of add and delete.Classes in org.apache.jena.graph.impl that implement GraphModifier and TypeClassDescriptionclassDeprecated, for removal: This API element is subject to removal in a future version.To be removed.classGraphBase is an implementation of Graph that provides some convenient base functionality for Graph implementations.classA version of Graph that enforces term equality even if the base graph uses value-indexing.classA wrapper class which simply defers all operations to its base.Methods in org.apache.jena.graph.impl that return GraphModifier and TypeMethodDescriptionWrappedGraph.getWrapped()static GraphGraphPlain.plain()Deprecated.From Jena5, graphs are all "same term".static GraphDeprecated.From Jena5, graphs are all "same term".Methods in org.apache.jena.graph.impl with parameters of type GraphModifier and TypeMethodDescriptionbooleanDefault implementation answerstrueiff this graph is the same graph as the argument graph.booleanstatic booleanAre the two models isomorphic?static intbooleanGraphBase.isIsomorphicWith(Graph g) Answer true iff this graph is isomorphic togaccording to the algorithm (indeed, method) inGraphMatcher.booleanWrappedGraph.isIsomorphicWith(Graph g) static Node[][]Return an isomorphism between the two models.voidSimpleEventManager.notifyAddArray(Graph g, Triple[] ts) voidSimpleEventManager.notifyAddGraph(Graph g, Graph added) voidSimpleEventManager.notifyAddIterator(Graph g, Iterator<Triple> it) voidSimpleEventManager.notifyAddIterator(Graph g, List<Triple> it) voidSimpleEventManager.notifyAddList(Graph g, List<Triple> L) voidSimpleEventManager.notifyAddTriple(Graph g, Triple t) voidSimpleEventManager.notifyDeleteArray(Graph g, Triple[] ts) voidSimpleEventManager.notifyDeleteGraph(Graph g, Graph removed) voidSimpleEventManager.notifyDeleteIterator(Graph g, Iterator<Triple> it) voidSimpleEventManager.notifyDeleteIterator(Graph g, List<Triple> L) voidSimpleEventManager.notifyDeleteList(Graph g, List<Triple> L) voidSimpleEventManager.notifyDeleteTriple(Graph g, Triple t) voidSimpleEventManager.notifyEvent(Graph source, Object event) static ExtendedIterator<Triple>SimpleEventManager.notifyingRemove(Graph g, Iterator<Triple> i) Answer an iterator which wrapsito ensure that if a .remove() is executed on it, the graphgwill be notified.static GraphDeprecated.From Jena5, graphs are all "same term".static StringAnswer a human-consumable representation ofthat.Constructors in org.apache.jena.graph.impl with parameters of type Graph -
Uses of Graph in org.apache.jena.mem
Classes in org.apache.jena.mem that implement GraphModifier and TypeClassDescriptionclassDeprecated.This implementation of GraphMem will be replaced by a new implementation.classGraphMemBase - a common base class for GraphMem and SmallGraphMem.Constructors in org.apache.jena.mem with parameters of type GraphModifierConstructorDescriptionGraphTripleStoreMem(Graph parent) StoreTripleIterator(Graph toNotify, Iterator<Triple> it, NodeToTriplesMapBase X, NodeToTriplesMapBase A, NodeToTriplesMapBase B) -
Uses of Graph in org.apache.jena.mem2
Classes in org.apache.jena.mem2 that implement GraphModifier and TypeClassDescriptionclassA graph that stores triples in memory.classA graph that stores triples in memory.classA graph that stores triples in memory.classA graph that stores triples in memory. -
Uses of Graph in org.apache.jena.ontology
Methods in org.apache.jena.ontology that return types with arguments of type GraphModifier and TypeMethodDescriptionOntModel.getSubGraphs()Deprecated, for removal: This API element is subject to removal in a future version.i.next() Answer the sub-graphs of this model. -
Uses of Graph in org.apache.jena.ontology.impl
Methods in org.apache.jena.ontology.impl that return GraphModifier and TypeMethodDescriptionOntModelImpl.getBaseGraph()Answer the base-graph of this model.Methods in org.apache.jena.ontology.impl that return types with arguments of type GraphModifier and TypeMethodDescriptionOntModelImpl.getSubGraphs()Answer the sub-graphs of this model. -
Uses of Graph in org.apache.jena.ontology.models
Methods in org.apache.jena.ontology.models that return GraphModifier and TypeMethodDescriptionSimpleGraphMaker.create()BaseGraphMaker.createGraph()Make a fresh anonymous graph.BaseGraphMaker.createGraph(String name) A non-strict create.GraphMaker.createGraph()Answer a graph who's name isn't interesting.GraphMaker.createGraph(String name) Create a graph that does not already exist - equivalent tocreateGraph( name, false ).GraphMaker.createGraph(String name, boolean strict) Create a new graph associated with the given name.SimpleGraphMaker.createGraph(String name, boolean strict) Create a graph and record it with the given name in the local map.BaseGraphMaker.getGraph()Answer the default graph for this maker.GraphMaker.getGraph()Answer the default graph of this GraphMaker.BaseGraphMaker.openGraph()A non-strict open.GraphMaker.openGraph()Answer the default graph of this GraphMaker, if it has one.Equivalent toopenGraph( name, false )Find an existing graph that this factory knows about under the given name.SimpleGraphMaker.openGraph()Open (aka find) a graph with the given name in the local map. -
Uses of Graph in org.apache.jena.rdf.model
Methods in org.apache.jena.rdf.model that return GraphModifier and TypeMethodDescriptionModelGraphInterface.getGraph()Answer the Graph which this Model is presenting.Methods in org.apache.jena.rdf.model with parameters of type GraphModifier and TypeMethodDescriptionstatic ModelModelFactory.createModelForGraph(Graph g) Answer a model that encapsulates the given graph. -
Uses of Graph in org.apache.jena.rdf.model.impl
Methods in org.apache.jena.rdf.model.impl that return GraphMethods in org.apache.jena.rdf.model.impl with parameters of type GraphModifier and TypeMethodDescriptionstatic ExtendedIterator<Node>return an iterator over all the nodes that are reifiying something in the graphstatic ExtendedIterator<Node>return an iterator over all the nodes that are reifiying t in the graphstatic ExtendedIterator<Triple>ReifierStd.findEither(Graph graph, Triple match, boolean showHidden) Answer an iterator over the reification triples of the graph, or an empty iterator.static ExtendedIterator<Triple>ReifierStd.findExposed(Graph graph, Triple match) Answer an iterator over all the reification triples that match.static TripleAnswer the triple associated with the noden.static booleantrue iff _n_ is associated with some triple rficationstatic booleanvoidModelListenerAdapter.notifyAddArray(Graph graph, Triple[] triples) voidModelListenerAdapter.notifyAddGraph(Graph g, Graph added) voidModelListenerAdapter.notifyAddIterator(Graph g, Iterator<Triple> it) voidModelListenerAdapter.notifyAddIterator(Graph g, List<Triple> triples) voidModelListenerAdapter.notifyAddList(Graph g, List<Triple> triples) voidModelListenerAdapter.notifyAddTriple(Graph g, Triple t) voidModelListenerAdapter.notifyDeleteArray(Graph g, Triple[] triples) voidModelListenerAdapter.notifyDeleteGraph(Graph g, Graph removed) voidModelListenerAdapter.notifyDeleteIterator(Graph g, Iterator<Triple> it) voidModelListenerAdapter.notifyDeleteList(Graph g, List<Triple> triples) voidModelListenerAdapter.notifyDeleteTriple(Graph g, Triple t) voidModelListenerAdapter.notifyEvent(Graph g, Object event) static Nodenote the triple _t_ as reified using _n_ as its representing node.static voidremove any existing binding for _n_; hasNode(n) will return false and getTriple(n) will return null.static voidremove all refications which map to this triple.Constructors in org.apache.jena.rdf.model.impl with parameters of type Graph -
Uses of Graph in org.apache.jena.rdfxml.xmlinput1
Methods in org.apache.jena.rdfxml.xmlinput1 with parameters of type GraphModifier and TypeMethodDescriptionvoidRDFXMLReader.read(Graph g, InputStream in, String xmlBase) Reads from inputStream, using base URI xmlBase, adding triples to graph.voidReads from reader, using base URI xmlbase, adding triples to graph. -
Uses of Graph in org.apache.jena.reasoner
Subinterfaces of Graph in org.apache.jena.reasonerModifier and TypeInterfaceDescriptioninterfaceExtends the Graph interface to give additional means to query an inferred graph.Classes in org.apache.jena.reasoner that implement GraphModifier and TypeClassDescriptionclassA base level implementation of the InfGraph interface.Methods in org.apache.jena.reasoner that return GraphModifier and TypeMethodDescriptionBaseInfGraph.getDeductionsGraph()Returns a derivations graph.InfGraph.getDeductionsGraph()Returns a derivations graph.FGraph.getGraph()Returns the graph.BaseInfGraph.getRawGraph()Return the raw RDF data Graph being processed (i.e. the argument to the Reasonder.bind call that created this InfGraph).InfGraph.getRawGraph()Return the raw RDF data Graph being processed (i.e. the argument to the Reasonder.bind call that created this InfGraph).abstract GraphBaseInfGraph.getSchemaGraph()Return the schema graph, if any, bound into this inference graph.Methods in org.apache.jena.reasoner with parameters of type GraphModifier and TypeMethodDescriptionAttach the reasoner to a set of RDF data to process.Reasoner.bindSchema(Graph tbox) This is most commonly used to attach an ontology (a set of tbox axioms in description logics jargon) to a reasoner.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.An extension of the Graph.find interface which allows the caller to encode complex expressions in RDF and then refer to those expressions within the query triple.An extension of the Graph.find interface which allows the caller to encode complex expressions in RDF and then refer to those expressions within the query triple.voidReplace the underlying data graph for this inference graph and start any inferences over again.voidReplace the underlying data graph for this inference graph and start any inferences over again.Constructors in org.apache.jena.reasoner with parameters of type GraphModifierConstructorDescriptionBaseInfGraph(Graph data, Reasoner reasoner) ConstructorConstructor -
Uses of Graph in org.apache.jena.reasoner.rulesys
Subinterfaces of Graph in org.apache.jena.reasoner.rulesysModifier and TypeInterfaceDescriptioninterfaceThis interface collects together those operations that the backchaining engine needs to invoke in the parent InfGraph.interfaceThis 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 GraphModifier and TypeClassDescriptionclassAn inference graph interface that runs a set of forward chaining rules to conclusion on each added triple and stores the entire result set.classAn inference graph that uses a mixture of forward and backward chaining rules.classInference graph for accessing the LP version of the backward chaining rule engine.classCustomization of the generic rule inference graph for RDFS inference.classRETE implementation of the forward rule inference graph.Methods in org.apache.jena.reasoner.rulesys that return GraphModifier and TypeMethodDescriptionFBRuleReasoner.getBoundSchema()Answer the schema graph bound into this reasoner, or null if there isn't one.BasicForwardRuleInfGraph.getCurrentDeductionsGraph()Return the Graph containing all the static deductions available so far.ForwardRuleInfGraphI.getCurrentDeductionsGraph()Return the Graph containing all the static deductions available so far.BasicForwardRuleInfGraph.getDeductionsGraph()Return the Graph containing all the static deductions available so far.ForwardRuleInfGraphI.getDeductionsGraph()Return the Graph containing all the static deductions available so far.BasicForwardRuleInfGraph.getSchemaGraph()Return the schema graph, if any, bound into this inference graph.LPBackwardRuleInfGraph.getSchemaGraph()Return the schema graph, if any, bound into this inference graph.Methods in org.apache.jena.reasoner.rulesys with parameters of type GraphModifier and TypeMethodDescriptionAttach the reasoner to a set of RDF data to process.Attach the reasoner to a set of RDF data to process.Attach the reasoner to a set of RDF data to process.Attach the reasoner to a set of RDF data to process.Attach the reasoner to a set of RDF data to process.Attach the reasoner to a set of RDF data to process.Attach the reasoner to a set of RDF data to process.Attach the reasoner to a set of RDF data to process.BasicForwardRuleReasoner.bindSchema(Graph tbox) Precompute the implications of a schema graph.FBRuleReasoner.bindSchema(Graph tbox) Precompute the implications of a schema graph.GenericRuleReasoner.bindSchema(Graph tbox) Precompute the implications of a schema graph.LPBackwardRuleReasoner.bindSchema(Graph tbox) Precompute the implications of a schema graph.OWLFBRuleReasoner.bindSchema(Graph tbox) Precompute the implications of a schema graph.RDFSRuleReasoner.bindSchema(Graph tbox) Precompute the implications of a schema graph.static NodeUtil.getPropValue(Node root, Node prop, Graph context) Helper - returns the (singleton) value for the given property on the given root node in the data graph.static NodeConstruct an RDF list from the given array of nodes and assert it in the graph returning the head of the list.voidReplace the underlying data graph for this inference graph and start any inferences over again.voidReplace the underlying data graph for this inference graph and start any inferences over again.voidRulePreprocessHook.run(FBRuleInfGraph infGraph, Finder dataFind, Graph inserts) Invoke the preprocessing hook.Constructors in org.apache.jena.reasoner.rulesys with parameters of type GraphModifierConstructorDescriptionBasicForwardRuleInfGraph(Reasoner reasoner, List<Rule> rules, Graph schema) Constructor.Constructor.BasicForwardRuleInfGraph(Reasoner reasoner, Graph schema) Constructor.FBRuleInfGraph(Reasoner reasoner, List<Rule> rules, Graph schema) Constructor.Constructor.FBRuleInfGraph(Reasoner reasoner, Graph schema) Constructor.LPBackwardRuleInfGraph(Reasoner reasoner, LPRuleStore ruleStore, Graph data, Graph schema) Constructor.RDFSRuleInfGraph(Reasoner reasoner, List<Rule> rules, Graph schema) Constructor.Constructor.RETERuleInfGraph(Reasoner reasoner, List<Rule> rules, Graph schema) Constructor.Constructor.RETERuleInfGraph(Reasoner reasoner, Graph schema) Constructor. -
Uses of Graph in org.apache.jena.reasoner.rulesys.impl
Classes in org.apache.jena.reasoner.rulesys.impl that implement GraphModifier and TypeClassDescriptionclassA SafeGraph wraps a graph which might contain generalized RDF triples and hides them from API queries so that consumers of it are safe (but can use getRawGraph() to get back the unsafe graph.Methods in org.apache.jena.reasoner.rulesys.impl that return GraphModifier and TypeMethodDescriptionSafeGraph.getRawGraph()Return the unfiltered version of the graphMethods in org.apache.jena.reasoner.rulesys.impl with parameters of type GraphModifier and TypeMethodDescriptionvoidOWLExptRuleTranslationHook.run(FBRuleInfGraph infGraph, Finder dataFind, Graph inserts) Invoke the preprocessing hook.voidOWLRuleTranslationHook.run(FBRuleInfGraph infGraph, Finder dataFind, Graph inserts) Invoke the preprocessing hook.voidRDFSCMPPreprocessHook.run(FBRuleInfGraph infGraph, Finder dataFind, Graph inserts) Invoke the preprocessing hook.Constructors in org.apache.jena.reasoner.rulesys.impl with parameters of type Graph -
Uses of Graph in org.apache.jena.reasoner.transitiveReasoner
Classes in org.apache.jena.reasoner.transitiveReasoner that implement GraphModifier and TypeClassDescriptionclassImplementation of InfGraph used by the TransitiveReasoner.Methods in org.apache.jena.reasoner.transitiveReasoner that return GraphModifier and TypeMethodDescriptionTransitiveInfGraph.getSchemaGraph()Return the schema graph, if any, bound into this inference graph.Methods in org.apache.jena.reasoner.transitiveReasoner with parameters of type GraphModifier and TypeMethodDescriptionAttach the reasoner to a set of RDF ddata to process.TransitiveReasoner.bindSchema(Graph tbox) Extracts all of the subClass and subProperty declarations from the given schema/tbox and caches the resultant graphs.booleanTransitiveEngine.checkOccurance(Node prop, Graph graph) Test if there are any usages of prop within the given graph.Constructors in org.apache.jena.reasoner.transitiveReasoner with parameters of type GraphModifierConstructorDescriptionTransitiveInfGraph(Graph data, TransitiveReasoner reasoner) Constructor. -
Uses of Graph in org.apache.jena.util
Classes in org.apache.jena.util that implement GraphModifier and TypeClassDescriptionclassDeprecated, for removal: This API element is subject to removal in a future version.Do not use - to be removed.Methods in org.apache.jena.util that return GraphModifier and TypeMethodDescriptionstatic GraphPrefixMappingUtils.graphInUsePrefixMapping(Graph graph) Return a read-only graph that has the same data (RDF triples) as the one given, but has a prefix mapping that only includes "in use" prefixes as calculated byPrefixMappingUtils.calcInUsePrefixMapping(Graph, PrefixMapping).Methods in org.apache.jena.util with parameters of type GraphModifier and TypeMethodDescriptionstatic PrefixMappingPrefixMappingUtils.calcInUsePrefixMapping(Graph graph) Analyse the graph to see which prefixes of the graph are in use.static PrefixMappingPrefixMappingUtils.calcInUsePrefixMapping(Graph graph, PrefixMapping prefixMapping) Analyse the graph to see which prefixes of the givenPrefixMappingare in use.static PrefixMappingPrefixMappingUtils.calcInUsePrefixMappingTTL(Graph graph) Analyse the graph to see which prefixes of the graph are in use.static PrefixMappingPrefixMappingUtils.calcInUsePrefixMappingTTL(Graph graph, PrefixMapping prefixMapping) Analyse the graph to see which prefixes of the givenPrefixMappingare used by the graph triples.static GraphPrefixMappingUtils.graphInUsePrefixMapping(Graph graph) Return a read-only graph that has the same data (RDF triples) as the one given, but has a prefix mapping that only includes "in use" prefixes as calculated byPrefixMappingUtils.calcInUsePrefixMapping(Graph, PrefixMapping).Constructors in org.apache.jena.util with parameters of type GraphModifierConstructorDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Constructor, wrap the given graph with a state monitor