Uses of Interface
org.apache.jena.ontology.ObjectProperty
Packages that use ObjectProperty
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 ObjectProperty in org.apache.jena.ontology
Subinterfaces of ObjectProperty in org.apache.jena.ontologyModifier and TypeInterfaceDescriptioninterface
Interface 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).interface
Interface that encapsulates a property that is symmetric, i.e. one in which ifp(x, y)
holds, thenp(y, x)
must also hold.interface
Interface that denotes a property that is transitive i.e. one in which ifx p y
holds, andy p z
holds, thenx p z
must also hold.Methods in org.apache.jena.ontology that return ObjectPropertyModifier and TypeMethodDescriptionOntProperty.asObjectProperty()
Answer a view of this property as an object propertyOntResource.asObjectProperty()
Answer a view of this resource as an object propertyOntProperty.convertToObjectProperty()
Answer a facet of this property as an object property, adding additional information to the model if necessary.OntModel.createObjectProperty
(String uri) Answer a resource representing an object property in this model, and that is not a functional property.OntModel.createObjectProperty
(String uri, boolean functional) Answer a resource that represents an object property in this model.OntModel.getObjectProperty
(String uri) Answer a resource representing an object property in this model.Methods in org.apache.jena.ontology that return types with arguments of type ObjectPropertyModifier and TypeMethodDescriptionOntModel.listObjectProperties()
Answer an iterator that ranges over the object property resources in this model, i.e. the resources withrdf:type ObjectProperty
or equivalent. -
Uses of ObjectProperty in org.apache.jena.ontology.impl
Classes in org.apache.jena.ontology.impl that implement ObjectPropertyModifier and TypeClassDescriptionclass
Implementation of the functional property abstractionclass
Implementation of the object property abstractionclass
Implementation of the symmetric property abstractionclass
Implementation of the transitive property abstractionMethods in org.apache.jena.ontology.impl that return ObjectPropertyModifier and TypeMethodDescriptionOntPropertyImpl.asObjectProperty()
Answer a view of this property as an object propertyOntResourceImpl.asObjectProperty()
Answer a view of this resource as an object propertyOntPropertyImpl.convertToObjectProperty()
Answer a facet of this property as an object property, adding additional information to the model if necessary.OntModelImpl.createObjectProperty
(String uri) Answer a resource representing an object property in this model, and that is not a functional property.OntModelImpl.createObjectProperty
(String uri, boolean functional) Answer a resource that represents an object property in this model.OntModelImpl.getObjectProperty
(String uri) Answer a resource representing an object property in this model.Methods in org.apache.jena.ontology.impl that return types with arguments of type ObjectPropertyModifier and TypeMethodDescriptionOntModelImpl.listObjectProperties()
Answer an iterator that ranges over the object property resources in this model, i.e. the resources withrdf:type ObjectProperty
or equivalent.