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

    Modifier and Type
    Method
    Description
    OntModelSpecAssembler.getOntModelSpecField(String name)
    Deprecated, for removal: This API element is subject to removal in a future version.
    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

    Modifier and Type
    Field
    Description
    static final OntModelSpec
    OntModelSpec.OWL_DL_MEM
    Deprecated, for removal: This API element is subject to removal in a future version.
    A specification for OWL DL models that are stored in memory and do no additional entailment reasoning
    static final OntModelSpec
    OntModelSpec.OWL_DL_MEM_RDFS_INF
    Deprecated, for removal: This API element is subject to removal in a future version.
    A specification for OWL DL models that are stored in memory and use the RDFS inferencer for additional entailments
    static final OntModelSpec
    OntModelSpec.OWL_DL_MEM_RULE_INF
    Deprecated, for removal: This API element is subject to removal in a future version.
    A specification for OWL DL models that are stored in memory and use the OWL rules inference engine for additional entailments
    static final OntModelSpec
    Deprecated, for removal: This API element is subject to removal in a future version.
    A specification for OWL DL models that are stored in memory and use the transitive inferencer for additional entailments
    static final OntModelSpec
    OntModelSpec.OWL_LITE_MEM
    Deprecated, for removal: This API element is subject to removal in a future version.
    A specification for OWL Lite models that are stored in memory and do no entailment additional reasoning
    static final OntModelSpec
    Deprecated, for removal: This API element is subject to removal in a future version.
    A specification for OWL Lite models that are stored in memory and use the RDFS inferencer for additional entailments
    static final OntModelSpec
    Deprecated, for removal: This API element is subject to removal in a future version.
    A specification for OWL Lite models that are stored in memory and use the OWL rules inference engine for additional entailments
    static final OntModelSpec
    Deprecated, for removal: This API element is subject to removal in a future version.
    A specification for OWL Lite models that are stored in memory and use the transitive inferencer for additional entailments
    static final OntModelSpec
    OntModelSpec.OWL_MEM
    Deprecated, for removal: This API element is subject to removal in a future version.
    A specification for OWL models that are stored in memory and do no additional entailment reasoning
    static final OntModelSpec
    Deprecated, for removal: This API element is subject to removal in a future version.
    A specification for OWL models that are stored in memory and use the micro OWL rules inference engine for additional entailments
    static final OntModelSpec
    Deprecated, for removal: This API element is subject to removal in a future version.
    A specification for OWL models that are stored in memory and use the mini OWL rules inference engine for additional entailments
    static final OntModelSpec
    OntModelSpec.OWL_MEM_RDFS_INF
    Deprecated, for removal: This API element is subject to removal in a future version.
    A specification for OWL models that are stored in memory and use the RDFS inferencer for additional entailments
    static final OntModelSpec
    OntModelSpec.OWL_MEM_RULE_INF
    Deprecated, for removal: This API element is subject to removal in a future version.
    A specification for OWL models that are stored in memory and use the OWL rules inference engine for additional entailments
    static final OntModelSpec
    OntModelSpec.OWL_MEM_TRANS_INF
    Deprecated, for removal: This API element is subject to removal in a future version.
    A specification for OWL models that are stored in memory and use the transitive inferencer for additional entailments
    static final OntModelSpec
    OntModelSpec.RDFS_MEM
    Deprecated, for removal: This API element is subject to removal in a future version.
    A specification for RDFS ontology models that are stored in memory and do no additional entailment reasoning
    static final OntModelSpec
    OntModelSpec.RDFS_MEM_RDFS_INF
    Deprecated, for removal: This API element is subject to removal in a future version.
    A specification for RDFS ontology models that are stored in memory and use the RDFS inferencer for additional entailments
    static final OntModelSpec
    OntModelSpec.RDFS_MEM_TRANS_INF
    Deprecated, for removal: This API element is subject to removal in a future version.
    A specification for RDFS ontology models that are stored in memory and use the transitive reasoner for entailments
    Methods in org.apache.jena.ontology that return OntModelSpec
    Modifier and Type
    Method
    Description
    OntModelSpec.assemble(Model model)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Answer the OntModelSpec described using the Jena Assembler vocabulary properties of the single resource in model of type JA:OntModelSpec.
    OntModelSpec.assemble(Resource root)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Answer the OntModelSpec described using the Jena Assembler vocabulary properties of root.
    OntModelSpec.getDefaultSpec(String languageURI)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Answer a default specification for the given language URI.
    OntModel.getSpecification()
    Deprecated, for removal: This API element is subject to removal in a future version.
    Answer the ontology model specification that was used to construct this model
    Methods in org.apache.jena.ontology with parameters of type OntModelSpec
    Modifier and Type
    Method
    Description
    OntDocumentManager.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 OntModelSpec
    Modifier
    Constructor
    Description
     
    Deprecated, for removal: This API element is subject to removal in a future version.
    Create one model spec as a copy of another.
  • Uses of OntModelSpec in org.apache.jena.ontology.impl

    Modifier and Type
    Method
    Description
    OntModelImpl.getSpecification()
    Answer the ontology model specification that was used to construct this model
    Constructors in org.apache.jena.ontology.impl with parameters of type OntModelSpec
    Modifier
    Constructor
    Description
     
    Construct a new ontology model from the given specification.
     
    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 OntModelSpec
    Modifier and Type
    Method
    Description
    static OntModel
    ModelFactory.createOntologyModel(OntModelSpec spec)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Use org.apache.jena.ontapi.
    static OntModel
    ModelFactory.createOntologyModel(OntModelSpec spec, ModelMaker maker, Model base)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Use org.apache.jena.ontapi.
    static OntModel
    ModelFactory.createOntologyModel(OntModelSpec spec, Model base)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Use org.apache.jena.ontapi.