Uses of Class
org.apache.jena.ontology.OntModelSpec
Packages that use OntModelSpec
Package
Description
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.
-
Uses of OntModelSpec in org.apache.jena.assembler.assemblers
Methods in org.apache.jena.assembler.assemblers that return OntModelSpecModifier and TypeMethodDescriptionstatic OntModelSpec
OntModelSpecAssembler.getOntModelSpecField
(String name) Answer the OntModelSpec in the OntModelSpec class with the given member name, or null if there isn't one. -
Uses of OntModelSpec in org.apache.jena.ontology
Fields in org.apache.jena.ontology declared as OntModelSpecModifier and TypeFieldDescriptionstatic final OntModelSpec
OntModelSpec.OWL_DL_MEM
A specification for OWL DL models that are stored in memory and do no additional entailment reasoningstatic final OntModelSpec
OntModelSpec.OWL_DL_MEM_RDFS_INF
A specification for OWL DL models that are stored in memory and use the RDFS inferencer for additional entailmentsstatic final OntModelSpec
OntModelSpec.OWL_DL_MEM_RULE_INF
A specification for OWL DL models that are stored in memory and use the OWL rules inference engine for additional entailmentsstatic final OntModelSpec
OntModelSpec.OWL_DL_MEM_TRANS_INF
A specification for OWL DL models that are stored in memory and use the transitive inferencer for additional entailmentsstatic final OntModelSpec
OntModelSpec.OWL_LITE_MEM
A specification for OWL Lite models that are stored in memory and do no entailment additional reasoningstatic final OntModelSpec
OntModelSpec.OWL_LITE_MEM_RDFS_INF
A specification for OWL Lite models that are stored in memory and use the RDFS inferencer for additional entailmentsstatic final OntModelSpec
OntModelSpec.OWL_LITE_MEM_RULES_INF
A specification for OWL Lite models that are stored in memory and use the OWL rules inference engine for additional entailmentsstatic final OntModelSpec
OntModelSpec.OWL_LITE_MEM_TRANS_INF
A specification for OWL Lite models that are stored in memory and use the transitive inferencer for additional entailmentsstatic final OntModelSpec
OntModelSpec.OWL_MEM
A specification for OWL models that are stored in memory and do no additional entailment reasoningstatic final OntModelSpec
OntModelSpec.OWL_MEM_MICRO_RULE_INF
A specification for OWL models that are stored in memory and use the micro OWL rules inference engine for additional entailmentsstatic final OntModelSpec
OntModelSpec.OWL_MEM_MINI_RULE_INF
A specification for OWL models that are stored in memory and use the mini OWL rules inference engine for additional entailmentsstatic final OntModelSpec
OntModelSpec.OWL_MEM_RDFS_INF
A specification for OWL models that are stored in memory and use the RDFS inferencer for additional entailmentsstatic final OntModelSpec
OntModelSpec.OWL_MEM_RULE_INF
A specification for OWL models that are stored in memory and use the OWL rules inference engine for additional entailmentsstatic final OntModelSpec
OntModelSpec.OWL_MEM_TRANS_INF
A specification for OWL models that are stored in memory and use the transitive inferencer for additional entailmentsstatic final OntModelSpec
OntModelSpec.RDFS_MEM
A specification for RDFS ontology models that are stored in memory and do no additional entailment reasoningstatic final OntModelSpec
OntModelSpec.RDFS_MEM_RDFS_INF
A specification for RDFS ontology models that are stored in memory and use the RDFS inferencer for additional entailmentsstatic final OntModelSpec
OntModelSpec.RDFS_MEM_TRANS_INF
A specification for RDFS ontology models that are stored in memory and use the transitive reasoner for entailmentsMethods in org.apache.jena.ontology that return OntModelSpecModifier and TypeMethodDescriptionstatic OntModelSpec
Answer the OntModelSpec described using the Jena Assembler vocabulary properties of the single resource inmodel
of type JA:OntModelSpec.static OntModelSpec
Answer the OntModelSpec described using the Jena Assembler vocabulary properties ofroot
.static OntModelSpec
OntModelSpec.getDefaultSpec
(String languageURI) Answer a default specification for the given language URI.OntModel.getSpecification()
Answer the ontology model specification that was used to construct this modelMethods in org.apache.jena.ontology with parameters of type OntModelSpecModifier and TypeMethodDescriptionOntDocumentManager.getOntology
(String uri, OntModelSpec spec) Answer the ontology model that results from loading the document with the given URI.Constructors in org.apache.jena.ontology with parameters of type OntModelSpecModifierConstructorDescriptionOntModelSpec
(OntModelSpec spec) Create one model spec as a copy of another. -
Uses of OntModelSpec in org.apache.jena.ontology.impl
Methods in org.apache.jena.ontology.impl that return OntModelSpecModifier and TypeMethodDescriptionOntModelImpl.getSpecification()
Answer the ontology model specification that was used to construct this modelConstructors in org.apache.jena.ontology.impl with parameters of type OntModelSpecModifierConstructorDescriptionOntModelImpl
(OntModelSpec spec) Construct a new ontology model from the given specification.OntModelImpl
(OntModelSpec spec, Model model) Construct a new ontology model, using the given model as a base. -
Uses of OntModelSpec in org.apache.jena.rdf.model
Methods in org.apache.jena.rdf.model with parameters of type OntModelSpecModifier and TypeMethodDescriptionstatic OntModel
ModelFactory.createOntologyModel
(OntModelSpec spec) Answer a new ontology model constructed according to the specification, which includes a ModelMaker which will create the necessary base model.static OntModel
ModelFactory.createOntologyModel
(OntModelSpec spec, ModelMaker maker, Model base) Answer a new ontology model which will process in-memory models of ontologies expressed the default ontology language (OWL).static OntModel
ModelFactory.createOntologyModel
(OntModelSpec spec, Model base) Answer a new ontology model, constructed according to the given ontology model specification, and starting with the ontology data in the given model.