Uses of Interface
org.apache.jena.ontology.OntProperty
Packages that use OntProperty
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.-
Uses of OntProperty in org.apache.jena.ontology
Subinterfaces of OntProperty in org.apache.jena.ontologyModifier and TypeInterfaceDescriptioninterfaceInterface that represents the category of annotation properties in an ontology language.interfaceInterface that encapsulates the class of properties whose range values are datatype values (as distinct fromObjectPropertywhose values are individuals).interfaceInterface encapsulating the class of properties that are functional: that is, properties in which a given given domain value has a unique value in the range.interfaceInterface encapsulating the class of properties that are inverse functional: that is, properties in which a given given range value has a unique value in the domain (effectively, a key).interfaceInterface encapsulating properties whose range values are restricted to individuals (as distinct from datatype valuedproperties).interfaceInterface that encapsulates a property that is symmetric, i.e. one in which ifp(x, y)holds, thenp(y, x)must also hold.interfaceInterface that denotes a property that is transitive i.e. one in which ifx p yholds, andy p zholds, thenx p zmust also hold.Methods in org.apache.jena.ontology that return OntPropertyModifier and TypeMethodDescriptionOntResource.asProperty()Answer a view of this resource as a propertyOntModel.createOntProperty(String uri) Deprecated, for removal: This API element is subject to removal in a future version.Answer a resource representing an generic property in this model.OntProperty.getEquivalentProperty()Answer a property that is equivalent to this property.OntProperty.getInverse()Answer the property that has declared itself to be the inverse of this property, if any such property is defined.OntProperty.getInverseOf()Answer a property of which this property is the inverse, if known, or null if there is no such property.Restriction.getOnProperty()Answer the property that this property restriction applies to.OntModel.getOntProperty(String uri) Deprecated, for removal: This API element is subject to removal in a future version.Answer a resource representing an generic property in this model.OntProperty.getSubProperty()Answer a property that is the sub-property of this property.OntProperty.getSuperProperty()Answer a property that is the super-property of this property.Methods in org.apache.jena.ontology that return types with arguments of type OntPropertyModifier and TypeMethodDescriptionOntModel.listAllOntProperties()Deprecated, for removal: This API element is subject to removal in a future version.Answer an iterator over all of the ontology properties in this model, including object properties, datatype properties, annotation properties, etc.OntClass.listDeclaredProperties()Equivalent to callingOntClass.listDeclaredProperties(boolean)with default valuedirect = false.OntClass.listDeclaredProperties(boolean direct) Return an iterator over the properties associated with a frame-like view of this class.ExtendedIterator<? extends OntProperty>OntProperty.listEquivalentProperties()Answer an iterator over all of the properties that are declared to be equivalent properties to this property.ExtendedIterator<? extends OntProperty>OntProperty.listInverse()Answer an iterator over the properties that are defined to be inverses of this property.ExtendedIterator<? extends OntProperty>OntProperty.listInverseOf()Answer an iterator over all of the properties that this property is declared to be the inverse of.OntModel.listOntProperties()Deprecated, for removal: This API element is subject to removal in a future version.Answer an iterator that ranges over the property resources in this model, i.e. the resources withrdf:type Propertyor equivalent.ExtendedIterator<? extends OntProperty>OntProperty.listSubProperties()Answer an iterator over all of the properties that are declared to be sub-properties of this property.ExtendedIterator<? extends OntProperty>OntProperty.listSubProperties(boolean direct) Answer an iterator over all of the properties that are declared to be sub-properties of this property.ExtendedIterator<? extends OntProperty>OntProperty.listSuperProperties()Answer an iterator over all of the properties that are declared to be super-properties of this property.ExtendedIterator<? extends OntProperty>OntProperty.listSuperProperties(boolean direct) Answer an iterator over all of the properties that are declared to be super-properties of this property. -
Uses of OntProperty in org.apache.jena.ontology.impl
Classes in org.apache.jena.ontology.impl that implement OntPropertyModifier and TypeClassDescriptionclassImplementation for ontology abstraction of annotation propertyclassImplementation of the datatype property abstractionclassImplementation of the functional property abstractionclassImplementation of the functional property abstractionclassImplementation of the object property abstractionclassImplementation of the abstraction representing a general ontology property.classImplementation of the symmetric property abstractionclassImplementation of the transitive property abstractionMethods in org.apache.jena.ontology.impl that return OntPropertyModifier and TypeMethodDescriptionOntResourceImpl.asProperty()Answer a view of this resource as a propertyOntModelImpl.createOntProperty(String uri) Answer a resource representing an generic property in this model.OntPropertyImpl.getEquivalentProperty()Answer a property that is equivalent to this property.ObjectPropertyImpl.getInverse()Answer the property that is the inverse of this property, ensuring that it presents the object property facet.OntPropertyImpl.getInverse()Answer the property that is the inverse of this property.ObjectPropertyImpl.getInverseOf()Answer a property that is an inverse of this property, ensuring that it presents the ObjectProperty facet.OntPropertyImpl.getInverseOf()Answer a property that is an inverse of this property.RestrictionImpl.getOnProperty()Answer the property that this property restriction applies to.OntModelImpl.getOntProperty(String uri) Answer a resource representing an generic property in this model.OntPropertyImpl.getSubProperty()Answer a property that is the sub-property of this property.OntPropertyImpl.getSuperProperty()Answer a property that is the super-property of this property.Methods in org.apache.jena.ontology.impl that return types with arguments of type OntPropertyModifier and TypeMethodDescriptionOntModelImpl.listAllOntProperties()Answer an iterator over all of the ontology properties in this model, including object properties, datatype properties, annotation properties, etc.OntClassImpl.listDeclaredProperties()Equivalent to callingOntClassImpl.listDeclaredProperties(boolean)with default valuedirect = false.OntClassImpl.listDeclaredProperties(boolean direct) Return an iterator over the properties associated with a frame-like view of this class.OntPropertyImpl.listEquivalentProperties()Answer an iterator over all of the properties that are declared to be equivalent properties to this property.OntPropertyImpl.listInverse()Answer an iterator over the properties that are defined to be inverses of this property.ExtendedIterator<? extends OntProperty>ObjectPropertyImpl.listInverseOf()Answer an iterator over all of the properties that are declared to be inverse properties of this property, ensuring that each presents the objectProperty facet.ExtendedIterator<? extends OntProperty>OntPropertyImpl.listInverseOf()Answer an iterator over all of the properties that are declared to be inverse properties of this property.OntModelImpl.listOntProperties()Answer an iterator that ranges over the property resources in this model, i.e. the resources withrdf:type Propertyor equivalent.OntPropertyImpl.listSubProperties()Answer an iterator over all of the properties that are declared to be sub-properties of this property.OntPropertyImpl.listSubProperties(boolean direct) Answer an iterator over all of the properties that are declared to be sub-properties of this property.OntPropertyImpl.listSuperProperties()Answer an iterator over all of the properties that are declared to be super-properties of this property.OntPropertyImpl.listSuperProperties(boolean direct) Answer an iterator over all of the properties that are declared to be super-properties of this property.