Uses of Class
com.hp.hpl.jena.shared.ReificationStyle

Packages that use ReificationStyle
com.hp.hpl.jena.graph This package defines the Graph and Node family of classes, which form the underlying datatypes of the Jena system. 
com.hp.hpl.jena.rdf.model A package for creating and manipulating RDF graphs. 
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.shared 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. 
 

Uses of ReificationStyle in com.hp.hpl.jena.graph
 

Methods in com.hp.hpl.jena.graph that return ReificationStyle
 ReificationStyle GraphMaker.getReificationStyle()
          Answer the reification style of all the graphs that this GraphMaker constructs.
 ReificationStyle Reifier.getStyle()
          Answer this reifier's style.
 

Methods in com.hp.hpl.jena.graph with parameters of type ReificationStyle
static Graph Factory.createDefaultGraph(ReificationStyle style)
          Answer a memory-based Graph with the given reification style.
static Graph Factory.createGraphMem(ReificationStyle style)
           
 

Uses of ReificationStyle in com.hp.hpl.jena.rdf.model
 

Fields in com.hp.hpl.jena.rdf.model declared as ReificationStyle
static ReificationStyle ModelFactory.Convenient
          The convenient reification style; quadlets contribute to reified statements, but are invisible to listStatements().
static ReificationStyle ModelFactory.Minimal
          The minimal reification style; quadlets do not contribute to reified statements, and are visible to listStatements().
static ReificationStyle ModelFactory.Standard
          The standard reification style; quadlets contribute to reified statements, and are visible to listStatements().
 

Methods in com.hp.hpl.jena.rdf.model that return ReificationStyle
 ReificationStyle Model.getReificationStyle()
          Answer the reification style of the model.
 

Methods in com.hp.hpl.jena.rdf.model with parameters of type ReificationStyle
static Model ModelFactory.createDefaultModel(ReificationStyle style)
          Answer a new memory-based model with the given reification style
static ModelMaker ModelFactory.createFileModelMaker(String root, ReificationStyle style)
          Answer a ModelMaker that constructs memory-based Models that are backed by files in the root directory.
static ModelMaker ModelFactory.createMemModelMaker(ReificationStyle style)
          Answer a ModelMaker that constructs memory-based Models that do not persist past JVM termination, with the given reification style.
 

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

Constructors in com.hp.hpl.jena.reasoner with parameters of type ReificationStyle
BaseInfGraph(Graph data, Reasoner reasoner, ReificationStyle style)
           
 

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

Methods in com.hp.hpl.jena.reasoner.rulesys that return ReificationStyle
 ReificationStyle BasicFBReifier.getStyle()
           
 

Constructors in com.hp.hpl.jena.reasoner.rulesys with parameters of type ReificationStyle
BasicFBReifier(BasicForwardRuleInfGraph parent, Reifier base, com.hp.hpl.jena.reasoner.rulesys.BasicFBReifier.GetReifier deductions, ReificationStyle style)
           
BasicForwardRuleInfGraph(Reasoner reasoner, List<Rule> rules, Graph schema, ReificationStyle style)
           
FBRuleInfGraph(Reasoner reasoner, List<Rule> rules, Graph schema, ReificationStyle style)
           
 

Uses of ReificationStyle in com.hp.hpl.jena.shared
 

Fields in com.hp.hpl.jena.shared declared as ReificationStyle
static ReificationStyle ReificationStyle.Convenient
           
static ReificationStyle ReificationStyle.Minimal
           
static ReificationStyle ReificationStyle.Standard
           
 



Licenced under the Apache License, Version 2.0