Uses of Interface
org.apache.jena.rdf.model.ModelMaker
Packages that use ModelMaker
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.
This package contains implementations of the interfaces defined
in the .model package, eg ModelCom for Model, ResourceImpl
for Resource, and so on.
-
Uses of ModelMaker in org.apache.jena.ontology
Methods in org.apache.jena.ontology that return ModelMakerModifier and TypeMethodDescriptionOntModelSpec.getBaseModelMaker()
Answer the model maker used for creating base models.OntModel.getImportModelMaker()
Answer the model maker associated with this model (used for constructing the constituent models of the imports closure).OntModelSpec.getImportModelMaker()
Answer the model maker used for creating imported models.OntModel.getModelMaker()
Deprecated.use getImportModelMaker instead for consistency with name changes to OntModelSpec to avoid ambiguity with base vs import makers.Methods in org.apache.jena.ontology with parameters of type ModelMakerModifier and TypeMethodDescriptionvoid
OntModelSpec.setBaseModelMaker
(ModelMaker m) Set the model maker used for base models.void
OntModelSpec.setImportModelMaker
(ModelMaker maker) Set the model maker that will be used when the ontology model needs to create an additional container for an imported ontologyConstructors in org.apache.jena.ontology with parameters of type ModelMakerModifierConstructorDescriptionOntModelSpec
(String baseModelName, ModelMaker baseMaker, ModelMaker importsMaker, OntDocumentManager docMgr, ReasonerFactory rFactory, String languageURI) Construct a new ontology model specification from the supplied components.OntModelSpec
(ModelMaker importsMaker, OntDocumentManager docMgr, ReasonerFactory rFactory, String languageURI) Construct a new ontology model specification with the given specification parametersOntModelSpec
(ModelMaker baseMaker, ModelMaker importsMaker, OntDocumentManager docMgr, ReasonerFactory rFactory, String languageURI) Construct a new ontology model specification from the supplied components. -
Uses of ModelMaker in org.apache.jena.ontology.impl
Methods in org.apache.jena.ontology.impl that return ModelMakerModifier and TypeMethodDescriptionOntModelImpl.getImportModelMaker()
Answer the model maker associated with this model (used for constructing the constituent models of the imports closure).OntModelImpl.getModelMaker()
Deprecated.use getImportModelMaker instead. -
Uses of ModelMaker in org.apache.jena.rdf.model
Methods in org.apache.jena.rdf.model that return ModelMakerModifier and TypeMethodDescriptionstatic ModelMaker
ModelFactory.createMemModelMaker()
Answer a ModelMaker that constructs memory-based Models that do not persist past JVM termination.Methods in org.apache.jena.rdf.model with parameters of type ModelMakerModifier and TypeMethodDescriptionstatic 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). -
Uses of ModelMaker in org.apache.jena.rdf.model.impl
Classes in org.apache.jena.rdf.model.impl that implement ModelMakerModifier and TypeClassDescriptionclass
A ModelMakerImpl implements a ModelMaker over a GraphMaker.