Uses of Class
org.apache.jena.graph.impl.GraphBase
-
Packages that use GraphBase Package Description org.apache.jena.graph.compose This package defines simple composite graphs - union, intersection, difference, and update-tracking.org.apache.jena.graph.impl This package provides basic implementations of Graph interfaces such as EventManager and Capabilities.org.apache.jena.mem Various memory-based implementations of interfaces, specifically GraphMem for memory-based Graphs.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.transitiveReasoner This package contains a reasoner which supports transitive-reflexive closure of subPropertyOf and subClassOf relations. -
-
Uses of GraphBase in org.apache.jena.graph.compose
Subclasses of GraphBase in org.apache.jena.graph.compose Modifier and Type Class Description class
CompositionBase
Base class for graphs that are composed of multiple sub-graphs.class
Delta
Graph operation for wrapping a base graph and leaving it unchanged while recording all the attempted updates for later access.class
Difference
Class representing the dynamic set difference L - R of two graphs.class
DisjointUnion
DisjointUnion - a version of Union that assumes the graphs are disjoint, and hence thatfind
need not do duplicate-removal.class
Dyadic
Base class for the two-operand composition operations; has two graphs L and Rclass
Intersection
The dynamic intersection of two graphs L and R.class
MultiUnion
A graph implementation that presents the union of zero or more subgraphs, one of which is distinguished as the updateable graph.class
Polyadic
A base class for composition graphs that are composed from zero or more sub-graphs (thus providing a basis for polyadic composition operators).class
Union
A class representing the dynamic union of two graphs. -
Uses of GraphBase in org.apache.jena.graph.impl
Subclasses of GraphBase in org.apache.jena.graph.impl Modifier and Type Class Description class
CollectionGraph
A simple graph implementation that wraps a collection of triples. -
Uses of GraphBase in org.apache.jena.mem
Subclasses of GraphBase in org.apache.jena.mem Modifier and Type Class Description class
GraphMem
class
GraphMemBase
GraphMemBase - a common base class for GraphMem and SmallGraphMem. -
Uses of GraphBase in org.apache.jena.reasoner
Subclasses of GraphBase in org.apache.jena.reasoner Modifier and Type Class Description class
BaseInfGraph
A base level implementation of the InfGraph interface. -
Uses of GraphBase in org.apache.jena.reasoner.rulesys
Subclasses of GraphBase in org.apache.jena.reasoner.rulesys 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. -
Uses of GraphBase in org.apache.jena.reasoner.transitiveReasoner
Subclasses of GraphBase in org.apache.jena.reasoner.transitiveReasoner Modifier and Type Class Description class
TransitiveInfGraph
Implementation of InfGraph used by the TransitiveReasoner.
-