Uses of Interface
com.hp.hpl.jena.ontology.OntProperty

Packages that use OntProperty
com.hp.hpl.jena.ontology Provides a set of abstractions and convenience classes for accessing and manipluating ontologies represented in RDF. 
 

Uses of OntProperty in com.hp.hpl.jena.ontology
 

Subinterfaces of OntProperty in com.hp.hpl.jena.ontology
 interface AnnotationProperty
           Interface that represents the category of annotation properties in an ontology language.
 interface DatatypeProperty
           Interface that encapsulates the class of properties whose range values are datatype values (as distinct from ObjectProperty whose values are individuals).
 interface FunctionalProperty
           Interface 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.
 interface InverseFunctionalProperty
           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 ObjectProperty
           Interface encapsulating properties whose range values are restricted to individuals (as distinct from datatype valued properties).
 interface SymmetricProperty
           Interface that encapsulates a property that is symmetric, i.e. one in which if p(x, y) holds, thenp(y, x) must also hold.
 interface TransitiveProperty
           Interface that denotes a property that is transitive i.e. one in which if x p y holds, and y p z holds, then x p z must also hold.
 

Methods in com.hp.hpl.jena.ontology that return OntProperty
 OntProperty OntResource.asProperty()
          Answer a view of this resource as a property
 OntProperty OntModel.createOntProperty(String uri)
           Answer a resource representing an generic property in this model.
 OntProperty OntProperty.getEquivalentProperty()
          Answer a property that is equivalent to this property.
 OntProperty OntProperty.getInverse()
          Answer the property that has declared itself to be the inverse of this property, if any such property is defined.
 OntProperty OntProperty.getInverseOf()
          Answer a property of which this property is the inverse, if known, or null if there is no such property.
 OntProperty Restriction.getOnProperty()
          Answer the property that this property restriction applies to.
 OntProperty OntModel.getOntProperty(String uri)
           Answer a resource representing an generic property in this model.
 OntProperty OntProperty.getSubProperty()
          Answer a property that is the sub-property of this property.
 OntProperty OntProperty.getSuperProperty()
          Answer a property that is the super-property of this property.
 

Methods in com.hp.hpl.jena.ontology that return types with arguments of type OntProperty
 com.hp.hpl.jena.util.iterator.ExtendedIterator<OntProperty> OntModel.listAllOntProperties()
          Answer an iterator over all of the ontology properties in this model, including object properties, datatype properties, annotation properties, etc.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<OntProperty> OntClass.listDeclaredProperties()
          Answer an iteration of the properties associated with a frame-like view of this class.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<OntProperty> OntClass.listDeclaredProperties(boolean direct)
          Answer an iteration of the properties associated with a frame-like view of this class.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<? extends OntProperty> OntProperty.listEquivalentProperties()
          Answer an iterator over all of the properties that are declared to be equivalent properties to this property.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<? extends OntProperty> OntProperty.listInverse()
          Answer an iterator over the properties that are defined to be inverses of this property.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<? extends OntProperty> OntProperty.listInverseOf()
          Answer an iterator over all of the properties that this property is declared to be the inverse of.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<OntProperty> OntModel.listOntProperties()
           Answer an iterator that ranges over the property resources in this model, i.e. the resources with rdf:type Property or equivalent.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<? extends OntProperty> OntProperty.listSubProperties()
          Answer an iterator over all of the properties that are declared to be sub-properties of this property.
 com.hp.hpl.jena.util.iterator.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.
 com.hp.hpl.jena.util.iterator.ExtendedIterator<? extends OntProperty> OntProperty.listSuperProperties()
          Answer an iterator over all of the properties that are declared to be super-properties of this property.
 com.hp.hpl.jena.util.iterator.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.
 



Licenced under the Apache License, Version 2.0