Uses of Interface
com.hp.hpl.jena.rdf.model.Property

Packages that use Property
com.hp.hpl.jena.ontology Provides a set of abstractions and convenience classes for accessing and manipluating ontologies represented in RDF.  
com.hp.hpl.jena.rdf.arp Reading RDF/XML.  
com.hp.hpl.jena.rdf.model A package for creating and manipulating RDF graphs.  
com.hp.hpl.jena.reasoner The Jena2 reasoner subsystem is designed to allow a range of inference engines to be plugged into Jena.  
com.hp.hpl.jena.reasoner.rdfsReasoner1 This package contains an example RDFS reasoner.  
com.hp.hpl.jena.reasoner.transitiveReasoner This package contains a reasoner which supports transitive-reflexive closure of subPropertyOf and subClassOf relations.  
com.hp.hpl.jena.util Miscellaneous collection of utility classes.  
com.hp.hpl.jena.vocabulary A package containing constant classes with predefined constant objects for classes and properties defined in well known vocabularies.  
 

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

Subinterfaces of Property 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 OntProperty
           Interface encapsulating a property in an ontology.
 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 encapsulates an property that is transitive i.e. one in which if p(x, y) holds, and p(x, z) holds, then p(x, z) must also hold.
 

Fields in com.hp.hpl.jena.ontology declared as Property
static Property OntDocumentManager.PUBLIC_URI
          Represents the public URI of an ontology; also used to derive the namespace
static Property OntDocumentManager.ALT_URL
          Represents the alternative local copy of the public ontology; assumed to be resolvable, hence URL not URI
static Property OntDocumentManager.PREFIX
          Represents the standard prefix for this namespace
static Property OntDocumentManager.LANGUAGE
          Represents the ontology language used to encode the ontology
static Property OntDocumentManager.CACHE_MODELS
          Defines boolean policy choice of caching loaded models
static Property OntDocumentManager.PROCESS_IMPORTS
          Defines boolean policy choice of loading the imports closure
static Property OntDocumentManager.IGNORE_IMPORT
          Specifies the URI of an ontology that we do not want to import, even if processImports is true.
static Property OntDocumentManager.USE_DECLARED_NS_PREFIXES
          The policy property for including the pre-declared namespace prefixes in a model.
 

Methods in com.hp.hpl.jena.ontology that return Property
 Property Profile.EQUIVALENT_PROPERTY()
           Answer the predicate that denotes that one property has the same property extension as another.
 Property Profile.EQUIVALENT_CLASS()
           Answer the predicate that denotes that one class has the same extension as another.
 Property Profile.DISJOINT_WITH()
           Answer the predicate that denotes that one class has no individuals in its extension in common with another class.
 Property Profile.SAME_INDIVIDUAL_AS()
           Answer the predicate that denotes that one resource represents the same individual as another.
 Property Profile.SAME_AS()
           Answer the predicate that denotes that one resource represents the same ontology object as another.
 Property Profile.DIFFERENT_FROM()
           Answer the predicate that denotes that one resource represents a different individual than another resource.
 Property Profile.DISTINCT_MEMBERS()
           Answer the predicate that maps from an Profile.ALL_DIFFERENT() axiom to the set of individuals that are pair-wise different from each other.
 Property Profile.UNION_OF()
           Answer the predicate that denotes that one class is formed from the union (disjunction) of a set of others.
 Property Profile.INTERSECTION_OF()
           Answer the predicate that denotes that one class is formed from the intersection (conjunction) of a set of others.
 Property Profile.COMPLEMENT_OF()
           Answer the predicate that denotes that one class comprises the individuals that are not in a second class.
 Property Profile.ONE_OF()
           Answer the predicate that denotes that a class comprises exactly one of a given closed set individuals.
 Property Profile.ON_PROPERTY()
           Answer the predicate that maps from a Profile.RESTRICTION() to a property that it is a restriction on.
 Property Profile.ALL_VALUES_FROM()
           Answer the predicate that denotes a restriction on a given property to have only values from the given class expression.
 Property Profile.HAS_VALUE()
           Answer the predicate that denotes a restriction on a given property to have a given value.
 Property Profile.SOME_VALUES_FROM()
           Answer the predicate that denotes a restriction on a given property to have at least one value from the given class expression.
 Property Profile.MIN_CARDINALITY()
           Answer the predicate that denotes a restriction on a given property to have at least a certain number of values
 Property Profile.MAX_CARDINALITY()
           Answer the predicate that denotes a restriction on a given property to have at most a certain number of values
 Property Profile.CARDINALITY()
           Answer the predicate that denotes a restriction on a given property to have exactly a certain number of values
 Property Profile.INVERSE_OF()
           Answer the predicate that denotes that one property is the inverse of another
 Property Profile.IMPORTS()
           Answer the predicate that denotes that one ontology document imports another.
 Property Profile.VERSION_INFO()
           Answer the predicate that denotes version-info metadata on an ontology header
 Property Profile.PRIOR_VERSION()
           Answer the predicate that documents that one ontology is a prior version of another.
 Property Profile.BACKWARD_COMPATIBLE_WITH()
           Answer the predicate that documents that one ontology resource is backwards compatible with another.
 Property Profile.INCOMPATIBLE_WITH()
           Answer the predicate that documents that one ontology resource is not backwards compatible with another.
 Property Profile.SUB_CLASS_OF()
           Answer the predicate that denotes that one class is a sub-class of another.
 Property Profile.SUB_PROPERTY_OF()
           Answer the predicate that denotes that one property is a sub-property of another.
 Property Profile.DOMAIN()
           Answer the predicate that denotes the domain of a property.
 Property Profile.RANGE()
           Answer the predicate that denotes the range of a property
 Property Profile.LABEL()
           Answer the predicate that denotes label annotation on an ontology element
 Property Profile.COMMENT()
           Answer the predicate that denotes comment annotation on an ontology element
 Property Profile.SEE_ALSO()
           Answer the predicate that denotes seeAlso annotation on an ontology element
 Property Profile.IS_DEFINED_BY()
           Answer the predicate that denotes isDefinedBy annotation on an ontology element
 Property Profile.FIRST()
          The property that denotes the head of a list
 Property Profile.REST()
          The property that denotes the tail of a list
 Property BooleanClassDescription.operator()
          Answer the property that is used to construct this boolean expression, for example Profile.UNION_OF().
 

Methods in com.hp.hpl.jena.ontology with parameters of type Property
 void Restriction.setOnProperty(Property prop)
          Assert that the property that this restriction applies to is the given property.
 boolean Restriction.onProperty(Property prop)
          Answer true if this restriction is a property restriction on the given property.
 void Restriction.removeOnProperty(Property prop)
          Remove the given property as the property that this restriction applies to.
 int OntResource.getCardinality(Property p)
          Answer the cardinality of the given property on this resource.
 com.hp.hpl.jena.ontology.path.PathSet OntResource.accessor(Property p, java.lang.String name)
           Answer an accessor for the given property of any ontology value.
 com.hp.hpl.jena.ontology.path.PathSet OntResource.accessor(Property p)
           Answer an accessor for the given property of any ontology value.
 void OntResource.setPropertyValue(Property property, RDFNode value)
           Set the value of the given property of this ontology resource to the given value, encoded as an RDFNode.
 RDFNode OntResource.getPropertyValue(Property property)
          Answer the value of a given RDF property for this resource, or null if it doesn't have one.
 NodeIterator OntResource.listPropertyValues(Property property)
          Answer an iterator over the values for a given RDF property.
 void OntResource.removeProperty(Property property, RDFNode value)
          Remove the specific property-value pair from this resource.
 void OntProperty.setSuperProperty(Property prop)
          Assert that this property is sub-property of the given property.
 void OntProperty.addSuperProperty(Property prop)
          Add a super-property of this property.
 boolean OntProperty.hasSuperProperty(Property prop, boolean direct)
          Answer true if the given property is a super-property of this property.
 void OntProperty.removeSuperProperty(Property prop)
          Remove the given property from the super-properties of this property.
 void OntProperty.setSubProperty(Property prop)
          Assert that this property is super-property of the given property.
 void OntProperty.addSubProperty(Property prop)
          Add a sub-property of this property.
 boolean OntProperty.hasSubProperty(Property prop, boolean direct)
          Answer true if the given property is a sub-property of this property.
 void OntProperty.removeSubProperty(Property prop)
          Remove the given property from the sub-properties of this property.
 void OntProperty.setEquivalentProperty(Property prop)
          Assert that the given property is equivalent to this property.
 void OntProperty.addEquivalentProperty(Property prop)
          Add a property that is equivalent to this property.
 boolean OntProperty.hasEquivalentProperty(Property prop)
          Answer true if the given property is equivalent to this property.
 void OntProperty.removeEquivalentProperty(Property prop)
          Remove the statement that this property and the given property are equivalent.
 void OntProperty.setInverseOf(Property prop)
          Assert that this property is the inverse of the given property.
 void OntProperty.addInverseOf(Property prop)
          Add a property that this property is the inverse of.
 boolean OntProperty.isInverseOf(Property prop)
          Answer true if this property is the inverse of the given property.
 void OntProperty.removeInverseProperty(Property prop)
          Remove the statement that this property is the inverse of the given property.
 Restriction OntModel.createRestriction(Property p)
           Answer a resource that represents an anonymous property restriction in this model.
 Restriction OntModel.createRestriction(java.lang.String uri, Property p)
           Answer a resource that represents a property restriction in this model.
 HasValueRestriction OntModel.createHasValueRestriction(java.lang.String uri, Property prop, RDFNode value)
          Answer a class description defined as the class of those individuals that have the given resource as the value of the given property
 SomeValuesFromRestriction OntModel.createSomeValuesFromRestriction(java.lang.String uri, Property prop, Resource cls)
          Answer a class description defined as the class of those individuals that have at least one property with a value belonging to the given class
 AllValuesFromRestriction OntModel.createAllValuesFromRestriction(java.lang.String uri, Property prop, Resource cls)
          Answer a class description defined as the class of those individuals for which all values of the given property belong to the given class
 CardinalityRestriction OntModel.createCardinalityRestriction(java.lang.String uri, Property prop, int cardinality)
          Answer a class description defined as the class of those individuals that have exactly the given number of values for the given property.
 MinCardinalityRestriction OntModel.createMinCardinalityRestriction(java.lang.String uri, Property prop, int cardinality)
          Answer a class description defined as the class of those individuals that have at least the given number of values for the given property.
 MaxCardinalityRestriction OntModel.createMaxCardinalityRestriction(java.lang.String uri, Property prop, int cardinality)
          Answer a class description defined as the class of those individuals that have at most the given number of values for the given property.
 Restriction OntClass.convertToRestriction(Property prop)
          Answer a view of this class as an resriction on the given property.
 

Uses of Property in com.hp.hpl.jena.rdf.arp
 

Methods in com.hp.hpl.jena.rdf.arp that return Property
static Property JenaReader.translatePred(AResource r)
          Deprecated. Should never have been public.
 

Uses of Property in com.hp.hpl.jena.rdf.model
 

Methods in com.hp.hpl.jena.rdf.model that return Property
 Property Statement.getPredicate()
          An accessor function to return the predicate of the statement.
 Property SimpleSelector.getPredicate()
          Return the predicate constraint of this selector.
 Property Selector.getPredicate()
          Answer the only predicate Property that this Selector will match, or null if it can match more than a single property.
static Property ResourceFactory.createProperty(java.lang.String uriref)
          create a new property.
static Property ResourceFactory.createProperty(java.lang.String namespace, java.lang.String localName)
          create a new property.
 Property ResourceFactory.Interface.createProperty(java.lang.String uriref)
          create a new property.
 Property ResourceFactory.Interface.createProperty(java.lang.String namespace, java.lang.String localName)
          create a new property.
 Property ModelCon.getProperty(java.lang.String uri)
          Return a Property instance in this model.
 Property ModelCon.createProperty(java.lang.String uri)
          Create a property.
 Property Model.getProperty(java.lang.String nameSpace, java.lang.String localName)
          Return a Property instance in this model.
 Property Model.createProperty(java.lang.String nameSpace, java.lang.String localName)
          Create a property.
 

Methods in com.hp.hpl.jena.rdf.model with parameters of type Property
 Statement Statement.getProperty(Property p)
          Get a property of the object of the statement.
 Statement Statement.getStatementProperty(Property p)
          Return a property of this statement.
static Statement ResourceFactory.createStatement(Resource subject, Property predicate, RDFNode object)
          create a new statement.
 Statement ResourceFactory.Interface.createStatement(Resource subject, Property predicate, RDFNode object)
          create a new statement.
 Statement Resource.getProperty(Property p)
          Get a property value of this resource.
 StmtIterator Resource.listProperties(Property p)
          List all the values of the property p.
 Resource Resource.addProperty(Property p, boolean o)
          Add a property to this resource.
 Resource Resource.addProperty(Property p, long o)
          Add a property to this resource.
 Resource Resource.addProperty(Property p, char o)
          Add a property to this resource.
 Resource Resource.addProperty(Property p, float o)
          Add a property to this resource.
 Resource Resource.addProperty(Property p, double o)
          Add a property to this resource.
 Resource Resource.addProperty(Property p, java.lang.String o)
          Add a property to this resource.
 Resource Resource.addProperty(Property p, java.lang.String o, java.lang.String l)
          Add a property to this resource.
 Resource Resource.addProperty(Property p, java.lang.Object o)
          Add a property to this resource.
 Resource Resource.addProperty(Property p, RDFNode o)
          Add a property to this resource.
 boolean Resource.hasProperty(Property p)
          Determine whether this resource has any values for a given property.
 boolean Resource.hasProperty(Property p, boolean o)
          Test if this resource has a given property with a given value.
 boolean Resource.hasProperty(Property p, long o)
          Test if this resource has a given property with a given value.
 boolean Resource.hasProperty(Property p, char o)
          Test if this resource has a given property with a given value.
 boolean Resource.hasProperty(Property p, float o)
          Test if this resource has a given property with a given value.
 boolean Resource.hasProperty(Property p, double o)
          Test if this resource has a given property with a given value.
 boolean Resource.hasProperty(Property p, java.lang.String o)
          Test if this resource has a given property with a given value.
 boolean Resource.hasProperty(Property p, java.lang.String o, java.lang.String l)
          Test if this resource has a given property with a given value.
 boolean Resource.hasProperty(Property p, java.lang.Object o)
          Test if this resource has a given property with a given value.
 boolean Resource.hasProperty(Property p, RDFNode o)
          Test if this resource has a given property with a given value.
 Resource Resource.removeAll(Property p)
          Delete all the statements with predicate p for this resource from its associated model.
 Statement ModelCon.createStatement(Resource s, Property p, boolean o)
          Create a Statement instance.
 Statement ModelCon.createStatement(Resource s, Property p, long o)
          Create a Statement instance.
 Statement ModelCon.createStatement(Resource s, Property p, char o)
          Create a Statement instance.
 Statement ModelCon.createStatement(Resource s, Property p, float o)
          Create a Statement instance.
 Statement ModelCon.createStatement(Resource s, Property p, double o)
          Create a Statement instance.
 Statement ModelCon.createStatement(Resource s, Property p, java.lang.String o)
          Create a Statement instance.
 Statement ModelCon.createStatement(Resource s, Property p, java.lang.String o, java.lang.String l)
          Create a Statement instance.
 Statement ModelCon.createStatement(Resource s, Property p, java.lang.String o, boolean wellFormed)
          Create a Statement instance.
 Statement ModelCon.createStatement(Resource s, Property p, java.lang.String o, java.lang.String l, boolean wellFormed)
          Create a Statement instance.
 Statement ModelCon.createStatement(Resource s, Property p, java.lang.Object o)
          Create a Statement instance.
 Model ModelCon.add(Resource s, Property p, RDFNode o)
          add a statement to this model.
 Model ModelCon.add(Resource s, Property p, boolean o)
          add a statement to this model.
 Model ModelCon.add(Resource s, Property p, long o)
          add a statement to this model.
 Model ModelCon.add(Resource s, Property p, char o)
          add a statement to this model.
 Model ModelCon.add(Resource s, Property p, float o)
          add a statement to this model.
 Model ModelCon.add(Resource s, Property p, double o)
          add a statement to this model.
 Model ModelCon.add(Resource s, Property p, java.lang.String o)
          add a statement to this model.
 Model ModelCon.add(Resource s, Property p, java.lang.String o, boolean wellFormed)
          add a statement to this model.
 Model ModelCon.add(Resource s, Property p, java.lang.String o, java.lang.String l)
          add a statement to this model.
 Model ModelCon.add(Resource s, Property p, java.lang.String o, java.lang.String l, boolean wellFormed)
          add a statement to this model.
 Model ModelCon.add(Resource s, Property p, java.lang.Object o)
          add a statement to this model.
 StmtIterator ModelCon.listStatements(Resource subject, Property predicate, boolean object)
          Find all the statements matching a pattern.
 StmtIterator ModelCon.listStatements(Resource subject, Property predicate, long object)
          Find all the statements matching a pattern.
 StmtIterator ModelCon.listStatements(Resource subject, Property predicate, char object)
          Find all the statements matching a pattern.
 StmtIterator ModelCon.listStatements(Resource subject, Property predicate, float object)
          Find all the statements matching a pattern.
 StmtIterator ModelCon.listStatements(Resource subject, Property predicate, double object)
          Find all the statements matching a pattern.
 StmtIterator ModelCon.listStatements(Resource subject, Property predicate, java.lang.String object)
          Find all the statements matching a pattern.
 StmtIterator ModelCon.listStatements(Resource subject, Property predicate, java.lang.String object, java.lang.String lang)
          Find all the statements matching a pattern.
 ResIterator ModelCon.listSubjectsWithProperty(Property p, boolean o)
          List all subjects with a given property and property value.
 ResIterator ModelCon.listSubjectsWithProperty(Property p, long o)
          List all the subjects with a given property and property value.
 ResIterator ModelCon.listSubjectsWithProperty(Property p, char o)
          List all subjects with a given property and property value.
 ResIterator ModelCon.listSubjectsWithProperty(Property p, float o)
          List all subjects with a given property and property value.
 ResIterator ModelCon.listSubjectsWithProperty(Property p, double o)
          lists all subjects with a given property and property value.
 ResIterator ModelCon.listSubjectsWithProperty(Property p, java.lang.String o)
          lists all subjects with a given property and property value.
 ResIterator ModelCon.listSubjectsWithProperty(Property p, java.lang.String o, java.lang.String l)
          lists all subjects with a given property and property value.
 ResIterator ModelCon.listSubjectsWithProperty(Property p, java.lang.Object o)
          List all subjects with a given property and property value.
 boolean ModelCon.contains(Resource s, Property p, boolean o)
          Determine if a statement is present in this model.
 boolean ModelCon.contains(Resource s, Property p, long o)
          Determine if a statement is present in this model.
 boolean ModelCon.contains(Resource s, Property p, char o)
          Determine if a statement is present in this model.
 boolean ModelCon.contains(Resource s, Property p, float o)
          Determine if a statement is present in this model.
 boolean ModelCon.contains(Resource s, Property p, double o)
          Determine if a statement is present in this model.
 boolean ModelCon.contains(Resource s, Property p, java.lang.String o)
          Determine if a statement is present in this model.
 boolean ModelCon.contains(Resource s, Property p, java.lang.String o, java.lang.String l)
          Determine if a statement is present in this model.
 boolean ModelCon.contains(Resource s, Property p, java.lang.Object o)
          Determine if a statement is present in this model.
 Statement Model.createStatement(Resource s, Property p, RDFNode o)
          Create a Statement instance.
 Statement Model.getProperty(Resource s, Property p)
          Return a statement with given subject and property.
 ResIterator Model.listSubjectsWithProperty(Property p)
          List all subjects with a given property.
 ResIterator Model.listSubjectsWithProperty(Property p, RDFNode o)
          List all subjects with a given property and property value
 NodeIterator Model.listObjectsOfProperty(Property p)
          List all objects of a given property.
 NodeIterator Model.listObjectsOfProperty(Resource s, Property p)
          List the values of a property of a resource.
 boolean Model.contains(Resource s, Property p)
          Determine whether this model contains any statements with a given subject and property.
 boolean Model.contains(Resource s, Property p, RDFNode o)
          Determine if a statement is present in this model.
 StmtIterator Model.listStatements(Resource s, Property p, RDFNode o)
          Find all the statements matching a pattern.
 StmtIterator InfModel.listStatements(Resource subject, Property predicate, RDFNode object, Model posit)
          Find all the statements matching a pattern.
 

Constructors in com.hp.hpl.jena.rdf.model with parameters of type Property
SimpleSelector(Resource subject, Property predicate, RDFNode object)
          Create a selector.
SimpleSelector(Resource subject, Property predicate, boolean object)
          Create a selector.
SimpleSelector(Resource subject, Property predicate, long object)
          Create a selector.
SimpleSelector(Resource subject, Property predicate, char object)
          Create a selector.
SimpleSelector(Resource subject, Property predicate, float object)
          Create a selector.
SimpleSelector(Resource subject, Property predicate, double object)
          Create a selector.
SimpleSelector(Resource subject, Property predicate, java.lang.String object)
          Create a selector.
SimpleSelector(Resource subject, Property predicate, java.lang.String object, java.lang.String language)
          Create a selector.
SimpleSelector(Resource subject, Property predicate, java.lang.Object object)
          Create a selector.
 

Uses of Property in com.hp.hpl.jena.reasoner
 

Methods in com.hp.hpl.jena.reasoner with parameters of type Property
 boolean Reasoner.supportsProperty(Property property)
          Determine whether the given property is recognized and treated specially by this reasoner.
 

Uses of Property in com.hp.hpl.jena.reasoner.rdfsReasoner1
 

Fields in com.hp.hpl.jena.reasoner.rdfsReasoner1 declared as Property
static Property RDFSReasonerFactory.scanProperties
          Deprecated. Property used to configure the scan behaviour of the reasoner.
 

Methods in com.hp.hpl.jena.reasoner.rdfsReasoner1 with parameters of type Property
 boolean RDFSReasoner.supportsProperty(Property property)
          Deprecated. Determine whether the given property is recognized and treated specially by this reasoner.
 

Uses of Property in com.hp.hpl.jena.reasoner.transitiveReasoner
 

Methods in com.hp.hpl.jena.reasoner.transitiveReasoner with parameters of type Property
 boolean TransitiveReasoner.supportsProperty(Property property)
          Determine whether the given property is recognized and treated specially by this reasoner.
 

Uses of Property in com.hp.hpl.jena.util
 

Methods in com.hp.hpl.jena.util with parameters of type Property
static java.util.Collection ResourceUtils.maximalLowerElements(java.util.Collection resources, Property rel, boolean inverse)
           Answer the maximal lower elements of the given collection, given the partial ordering rel.
static java.util.Collection ResourceUtils.maximalLowerElements(java.util.Iterator resources, Property rel, boolean inverse)
           Given a collection of resources, and a relation defining a partial order over those resources, answer the sub-collection that contains only those elements that appear in the maximal generator of the relation.
 

Uses of Property in com.hp.hpl.jena.vocabulary
 

Fields in com.hp.hpl.jena.vocabulary declared as Property
static Property VCARD.Street
           
static Property VCARD.AGENT
           
static Property VCARD.SOURCE
           
static Property VCARD.LOGO
           
static Property VCARD.BDAY
           
static Property VCARD.REV
           
static Property VCARD.SORT_STRING
           
static Property VCARD.Orgname
           
static Property VCARD.CATEGORIES
           
static Property VCARD.N
           
static Property VCARD.Pcode
           
static Property VCARD.Prefix
           
static Property VCARD.PHOTO
           
static Property VCARD.FN
           
static Property VCARD.ORG
           
static Property VCARD.Suffix
           
static Property VCARD.CLASS
           
static Property VCARD.ADR
           
static Property VCARD.Region
           
static Property VCARD.GEO
           
static Property VCARD.Extadd
           
static Property VCARD.GROUP
           
static Property VCARD.EMAIL
           
static Property VCARD.UID
           
static Property VCARD.Family
           
static Property VCARD.TZ
           
static Property VCARD.NAME
           
static Property VCARD.Orgunit
           
static Property VCARD.Country
           
static Property VCARD.SOUND
           
static Property VCARD.TITLE
           
static Property VCARD.NOTE
           
static Property VCARD.MAILER
           
static Property VCARD.Other
           
static Property VCARD.Locality
           
static Property VCARD.Pobox
           
static Property VCARD.KEY
           
static Property VCARD.PRODID
           
static Property VCARD.Given
           
static Property VCARD.LABEL
           
static Property VCARD.TEL
           
static Property VCARD.NICKNAME
           
static Property VCARD.ROLE
           
static Property TestQuery.query
           
static Property TestQuery.data
           
static Property TestManifest.action
           
static Property TestManifest.result
           
static Property TestManifest.name
           
static Property TestManifest.entries
           
static Property RSS.description
           
static Property RSS.image
           
static Property RSS.items
           
static Property RSS.link
           
static Property RSS.name
           
static Property RSS.textinput
           
static Property RSS.title
           
static Property RSS.url
           
static Property ResultSet.value
           
static Property ResultSet.resultVariable
           
static Property ResultSet.variable
           
static Property ResultSet.size
           
static Property ResultSet.binding
           
static Property ResultSet.solution
           
static Property ReasonerVocabulary.nameP
          Reasoner description property: name of the reasoner
static Property ReasonerVocabulary.descriptionP
          Reasoner description property: text description of the reasoner
static Property ReasonerVocabulary.versionP
          Reasoner description property: version of the reasoner
static Property ReasonerVocabulary.supportsP
          Reasoner description property: a schema property supported by the reasoner
static Property ReasonerVocabulary.configurationP
          Reasoner description property: a configuration property supported by the reasoner
static Property ReasonerVocabulary.directSubClassOf
          The property that represents the direct/minimal version of the subClassOf relationship
static Property ReasonerVocabulary.directSubPropertyOf
          The property that represents the direct/minimal version of the subPropertyOf relationship
static Property ReasonerVocabulary.PROPderivationLogging
          Property used to configure the derivation logging behaviour of a reasoner.
static Property ReasonerVocabulary.PROPtraceOn
          Property used to configure the tracing behaviour of a reasoner.
static Property ReasonerVocabulary.PROPruleMode
          Property used to set the mode of a generic rule reasoner.
static Property ReasonerVocabulary.PROPruleSet
          Property used to attach a file a rules to a generic rule reasoner.
static Property ReasonerVocabulary.PROPenableOWLTranslation
          Property used to switch on/off OWL schema translation on a generic rule reasoner.
static Property ReasonerVocabulary.PROPenableTGCCaching
          Property used to switch on/off use of the dedicated subclass/subproperty caching in a generic rule reasoner.
static Property ReasonerVocabulary.PROPenableCMPScan
          Property used to switch on/off scanning of data for container membership properties in RDFS preprocessing.
static Property ReasonerVocabulary.PROPsetRDFSLevel
          Property used to switch to different RDFS processing levles.
static Property RDFS.comment
           
static Property RDFS.domain
           
static Property RDFS.label
           
static Property RDFS.isDefinedBy
           
static Property RDFS.range
           
static Property RDFS.seeAlso
           
static Property RDFS.subClassOf
           
static Property RDFS.subPropertyOf
           
static Property RDFS.member
           
static Property RDF.first
           
static Property RDF.rest
           
static Property RDF.subject
           
static Property RDF.predicate
           
static Property RDF.object
           
static Property RDF.type
           
static Property RDF.value
           
static Property OWL.equivalentProperty
          Property denoting the OWL predicate that states that two given properties are equivalent
static Property OWL.equivalentClass
          Property denoting the OWL predicate that states that two given classes are equivalent
static Property OWL.disjointWith
          Property denoting the OWL predicate that states that one class has no instances in common with another
static Property OWL.sameIndividualAs
          Property denoting the OWL predicate that states that two given indviduals are the same object
static Property OWL.sameAs
          Property denoting the OWL predicate that states that two given values are equivalent
static Property OWL.differentFrom
          Property denoting the OWL predicate that states that two given values are different
static Property OWL.distinctMembers
          Property denoting the OWL predicate that states that two given classes have different members
static Property OWL.unionOf
          Property denoting the OWL predicate that states that a given class is same as the union of a list of give class descriptions
static Property OWL.intersectionOf
          Property denoting the OWL predicate that states that a given class is same as the intersection of a list of give class descriptions
static Property OWL.complementOf
          Property denoting the OWL predicate that states that a given class is the complement of another class description
static Property OWL.oneOf
          Property denoting the OWL predicate that states that a given class is constructed from a closed enumeration of values
static Property OWL.onProperty
          Property denoting the OWL predicate that states that names the property that a property restriction applies to
static Property OWL.allValuesFrom
          Property denoting the OWL predicate that states that a class is in a given restriction if all values of the restricted property are in the given class
static Property OWL.hasValue
          Property denoting the OWL predicate that nominates the value the restricted property must have for the class to be in the restriction
static Property OWL.someValuesFrom
          Property denoting the OWL predicate that states that a class is in a given restriction if at least one value of the restricted property is in the given class
static Property OWL.minCardinality
          Property denoting the OWL predicate that states that a property should have a given minimum cardinality
static Property OWL.maxCardinality
          Property denoting the OWL predicate that states that a property should have a given maximum cardinality
static Property OWL.cardinality
          Property denoting the OWL predicate that states that a property should have a given cardinality
static Property OWL.inverseOf
          Property denoting the OWL predicate that states that one property is the inverse of another
static Property OWL.imports
          Property denoting the OWL predicate that states that a given ontology imports another
static Property OWL.versionInfo
          Property denoting the OWL predicate that states the version metadata for a given ontology
static Property OWL.priorVersion
          Property denoting the OWL predicate that states that a given ontology is a prior version of the ontology given by the domain
static Property OWL.backwardCompatibleWith
          Property denoting the OWL predicate that states that a given ontology is a backwardly compatible prior version of the ontology given by the domain
static Property OWL.incompatibleWith
          Property denoting the OWL predicate that states that a given ontology is a backwardly incompatible version of the ontology given by the domain
static Property OWL.type
          Property denoting the type of a value @see RDF#type
static Property OWL.comment
          Property denoting the comment on a value @see RDFS#comment
static Property OWL.domain
          Property denoting the domain of a predicate @see RDFS#domain
static Property OWL.label
          Property denoting the label on a value @see RDFS#label
static Property OWL.range
          Property denoting the range of a predicate @see RDFS#range
static Property OWL.subClassOf
          Property denoting the super-class of a class @see RDFS#subClassOf
static Property OWL.subPropertyOf
          Property denoting the super-property of a property @see RDFS#subPropertyOf
static Property DC_11.title
          A name given to the resource.
static Property DC_11.creator
          An entity primarily responsible for making the content of the resource.
static Property DC_11.subject
          The topic of the content of the resource.
static Property DC_11.description
          An account of the content of the resource.
static Property DC_11.publisher
          An entity responsible for making the resource available
static Property DC_11.contributor
          An entity responsible for making contributions to the content of the resource.
static Property DC_11.date
          A date associated with an event in the life cycle of the resource.
static Property DC_11.type
          The nature or genre of the content of the resource.
static Property DC_11.format
          The physical or digital manifestation of the resource.
static Property DC_11.identifier
          An unambiguous reference to the resource within a given context.
static Property DC_11.source
          A reference to a resource from which the present resource is derived.
static Property DC_11.language
          A language of the intellectual content of the resource.
static Property DC_11.relation
          A reference to a related resource.
static Property DC_11.coverage
          The extent or scope of the content of the resource.
static Property DC_11.rights
          Information about rights held in and over the resource.
static Property DC_10.contributor
           
static Property DC_10.coverage
           
static Property DC_10.creator
           
static Property DC_10.date
           
static Property DC_10.description
           
static Property DC_10.format
           
static Property DC_10.identifier
           
static Property DC_10.language
           
static Property DC_10.publisher
           
static Property DC_10.relation
           
static Property DC_10.rights
           
static Property DC_10.source
           
static Property DC_10.subject
           
static Property DC_10.title
           
static Property DC_10.type
           
static Property DCTerms.audience
          A class of entity for whom the resource is intended or useful.
static Property DCTerms.alternative
          Any form of the title used as a substitute or alternative to the formal title of the resource.
static Property DCTerms.tableOfContents
          A list of subunits of the content of the resource.
static Property DCTerms.dcAbstract
          A summary of the content of the resource.
static Property DCTerms.created
          Date of creation of the resource.
static Property DCTerms.valid
          Date (often a range) of validity of a resource.
static Property DCTerms.available
          Date (often a range) that the resource will become or did become available.
static Property DCTerms.issued
          Date of formal issuance (e.g., publication) of the resource.
static Property DCTerms.modified
          Date on which the resource was changed.
static Property DCTerms.extent
          The size or duration of the resource.
static Property DCTerms.medium
          The material or physical carrier of the resource.
static Property DCTerms.isVersionOf
          The described resource is a version, edition, or adaptation of the referenced resource.
static Property DCTerms.hasVersion
          The described resource has a version, edition, or adaptation, namely, the referenced resource.
static Property DCTerms.isReplacedBy
          The described resource is supplanted, displaced, or superseded by the referenced resource.
static Property DCTerms.replaces
          The described resource supplants, displaces, or supersedes the referenced resource.
static Property DCTerms.isRequiredBy
          The described resource is required by the referenced resource, either physically or logically.
static Property DCTerms.requires
          The described resource requires the referenced resource to support its function, delivery, or coherence of content.
static Property DCTerms.isPartOf
          The described resource is a physical or logical part of the referenced resource.
static Property DCTerms.hasPart
          The described resource includes the referenced resource either physically or logically.
static Property DCTerms.isReferencedBy
          The described resource is referenced, cited, or otherwise pointed to by the referenced resource.
static Property DCTerms.references
          The described resource references, cites, or otherwise points to the referenced resource.
static Property DCTerms.isFormatOf
          The described resource is the same intellectual content of the referenced resource, but presented in another format.
static Property DCTerms.hasFormat
          The described resource pre-existed the referenced resource, which is essentially the same intellectual content presented in another format.
static Property DCTerms.conformsTo
          A reference to an established standard to which the resource conforms.
static Property DCTerms.spatial
          Spatial characteristics of the intellectual content of the resoure.
static Property DCTerms.temporal
          Temporal characteristics of the intellectual content of the resource.
static Property DCTerms.mediator
          A class of entity that mediates access to the resource and for whom the resource is intended or useful.
static Property DCTerms.dateAccepted
          Date of acceptance of the resource (e.g. of thesis by university department, of article by journal, etc.).
static Property DCTerms.dateCopyrighted
          Date of a statement of copyright.
static Property DCTerms.dateSubmitted
          Date of submission of the resource (e.g. thesis, articles, etc.).
static Property DCTerms.educationLevel
          A general statement describing the education or training context.
static Property DCTerms.accessRights
          Information about who can access the resource or an indication of its security status.
static Property DCTerms.bibliographicCitation
          A bibliographic reference for the resource.
static Property DB.engineType
           
static Property DB.driverVersion
           
static Property DB.formatDate
           
static Property DB.graph
           
static Property DB.maxLiteral
           
static Property DB.graphName
           
static Property DB.graphType
           
static Property DB.graphLSet
           
static Property DB.graphPrefix
           
static Property DB.graphId
           
static Property DB.graphDBSchema
           
static Property DB.stmtTable
           
static Property DB.reifTable
           
static Property DB.prefixValue
           
static Property DB.prefixURI
           
static Property DB.lSetName
           
static Property DB.lSetType
           
static Property DB.lSetPSet
           
static Property DB.pSetName
           
static Property DB.pSetType
           
static Property DB.pSetTable
           
static Property DAML_OIL.versionInfo
          RDF Property for the DAML versionInfo property
static Property DAML_OIL.imports
          RDF Property for the DAML imports property on Ontologies
static Property DAML_OIL.disjointWith
          RDF Property for the DAML disjointWith property on Classes
static Property DAML_OIL.disjointUnionOf
          RDF Property for the DAML disjointUnionOf property on Classes
static Property DAML_OIL.sameClassAs
          RDF Property for the DAML sameClassAs property on Classes
static Property DAML_OIL.samePropertyAs
          RDF Property for the DAML samePropertyAs property on Properties
static Property DAML_OIL.oneOf
          RDF Property for the oneOf property on DAML class expressions
static Property DAML_OIL.intersectionOf
          RDF Property for the intersectionOf property on class expressions
static Property DAML_OIL.unionOf
          RDF Property for the unionOf property on class expressions
static Property DAML_OIL.complementOf
          RDF Property for the complementOf property on class expressions
static Property DAML_OIL.equivalentTo
          RDF Property for the equivalentTo property on DAML values
static Property DAML_OIL.onProperty
          RDF Property for the DAML onProperty property on Restrictions
static Property DAML_OIL.toClass
          RDF Property for the DAML toClass property on Restrictions
static Property DAML_OIL.hasValue
          RDF Property for the DAML hasValue property on Restrictions
static Property DAML_OIL.hasClass
          RDF Property for the DAML hasClass property on Restrictions
static Property DAML_OIL.hasClassQ
          RDF Property for the DAML hasClassQ property on Restrictions
static Property DAML_OIL.cardinality
          RDF Property for the DAML cardinality property on Restrictions
static Property DAML_OIL.minCardinality
          RDF Property for the DAML minCardinality property on Restrictions
static Property DAML_OIL.maxCardinality
          RDF Property for the DAML maxCardinality property on Restrictions
static Property DAML_OIL.cardinalityQ
          RDF Property for the DAML cardinalityQ property on Restrictions
static Property DAML_OIL.minCardinalityQ
          RDF Property for the DAML minCardinalityQ property on Restrictions
static Property DAML_OIL.maxCardinalityQ
          RDF Property for the DAML maxCardinalityQ property on Restrictions
static Property DAML_OIL.inverseOf
          RDF Property for the DAML inverseOf property on Properties
static Property DAML_OIL.first
          RDF Property for the DAML first property on Lists
static Property DAML_OIL.rest
          RDF Property for the DAML rest property on Lists
static Property DAML_OIL.item
          RDF Property for the DAML item property on Lists
static Property DAML_OIL.subPropertyOf
          Alias for rdfs:subPropertyOf in daml namespace
static Property DAML_OIL.type
          Alias for rdf:type in daml namespace
static Property DAML_OIL.value
          Alias for rdf:value in daml namespace
static Property DAML_OIL.subClassOf
          Alias for rdfs:subClassOf in daml namespace
static Property DAML_OIL.domain
          Alias for rdfs:domain in daml namespace
static Property DAML_OIL.range
          Alias for rdfs:range in daml namespace
static Property DAML_OIL.label
          Alias for rdfs:label in daml namespace
static Property DAML_OIL.comment
          Alias for rdfs:comment in daml namespace
static Property DAML_OIL.seeAlso
          Alias for rdfs:seeAlso in daml namespace
static Property DAML_OIL.isDefinedBy
          Alias for rdfs:isDefinedBy in daml namespace
static Property DAML_OIL.sameIndividualAs
          RDF Property for the DAML sameIndividualAs property on instances
static Property DAML_OIL.differentIndividualFrom
          RDF Property for the DAML differentIndvidualFrom property on instances
 

Methods in com.hp.hpl.jena.vocabulary that return Property
static Property RDF.li(int i)
           
 Property DAML_OIL.versionInfo()
          Answer the RDF Property for the DAML versionInfo property
 Property DAML_OIL.imports()
          Answer the RDF Property for the DAML imports property on Ontologies
 Property DAML_OIL.disjointWith()
          Answer the RDF Property for the DAML disjointWith property on Classes
 Property DAML_OIL.disjointUnionOf()
          Answer the RDF Property for the DAML disjointUnionOf property on Classes
 Property DAML_OIL.sameClassAs()
          Answer the RDF Property for the DAML sameClassAs property on Classes
 Property DAML_OIL.samePropertyAs()
          Answer the RDF Property for the DAML samePropertyAs property on Properties
 Property DAML_OIL.oneOf()
          Answer the RDF Property for the oneOf property on DAML class expressions
 Property DAML_OIL.intersectionOf()
          Answer the RDF Property for the intersectionOf property on class expressions
 Property DAML_OIL.unionOf()
          Answer the RDF Property for the unionOf property on class expressions
 Property DAML_OIL.complementOf()
          Answer the RDF Property for the complementOf property on class expressions
 Property DAML_OIL.equivalentTo()
          Answer the RDF Property for the equivalentTo property on DAML values
 Property DAML_OIL.onProperty()
          Answer the RDF Property for the DAML onProperty property on Restrictions
 Property DAML_OIL.toClass()
          Answer the RDF Property for the DAML toClass property on Restrictions
 Property DAML_OIL.hasValue()
          Answer the RDF Property for the DAML hasValue property on Restrictions
 Property DAML_OIL.hasClass()
          Answer the RDF Property for the DAML hasClass property on Restrictions
 Property DAML_OIL.hasClassQ()
          Answer the RDF Property for the DAML hasClassQ property on Restrictions
 Property DAML_OIL.cardinality()
          Answer the RDF Property for the DAML cardinality property on Restrictions
 Property DAML_OIL.minCardinality()
          Answer the RDF Property for the DAML minCardinality property on Restrictions
 Property DAML_OIL.maxCardinality()
          Answer the RDF Property for the DAML maxCardinality property on Restrictions
 Property DAML_OIL.cardinalityQ()
          Answer the RDF Property for the DAML cardinalityQ property on Restrictions
 Property DAML_OIL.minCardinalityQ()
          Answer the RDF Property for the DAML minCardinalityQ property on Restrictions
 Property DAML_OIL.maxCardinalityQ()
          Answer the RDF Property for the DAML maxCardinalityQ property on Restrictions
 Property DAML_OIL.inverseOf()
          Answer the RDF Property for the DAML inverseOf property on Properties
 Property DAML_OIL.first()
          Answer the RDF Property for the DAML first property on Lists
 Property DAML_OIL.rest()
          Answer the RDF Property for the DAML rest property on Lists
 Property DAML_OIL.item()
          Answer the RDF Property for the DAML item property on Lists
 Property DAML_OIL.subPropertyOf()
          Answer the alias for rdfs:subPropertyOf in daml namespace
 Property DAML_OIL.type()
          Answer the alias for rdf:type in daml namespace
 Property DAML_OIL.value()
          Answer the alias for rdf:value in daml namespace
 Property DAML_OIL.subClassOf()
          Answer the alias for rdfs:subClassOf in daml namespace
 Property DAML_OIL.domain()
          Answer the alias for rdfs:domain in daml namespace
 Property DAML_OIL.range()
          Answer the alias for rdfs:range in daml namespace
 Property DAML_OIL.label()
          Answer the alias for rdfs:label in daml namespace
 Property DAML_OIL.comment()
          Answer the alias for rdfs:comment in daml namespace
 Property DAML_OIL.seeAlso()
          Answer the alias for rdfs:seeAlso in daml namespace
 Property DAML_OIL.isDefinedBy()
          Answer the alias for rdfs:isDefinedBy in daml namespace
 Property DAML_OIL.sameIndividualAs()
          Answer the RDF Property for the DAML sameIndividualAs property on instances
 Property DAML_OIL.differentIndividualFrom()
          Answer the RDF Property for the DAML differentIndvidualFrom property on instances
 Property DAMLVocabulary.versionInfo()
          Answer the RDF Property for the DAML versionInfo property
 Property DAMLVocabulary.imports()
          Answer the RDF Property for the DAML imports property on Ontologies
 Property DAMLVocabulary.disjointWith()
          Answer the RDF Property for the DAML disjointWith property on Classes
 Property DAMLVocabulary.disjointUnionOf()
          Answer the RDF Property for the DAML disjointUnionOf property on Classes
 Property DAMLVocabulary.sameClassAs()
          Answer the RDF Property for the DAML sameClassAs property on Classes
 Property DAMLVocabulary.samePropertyAs()
          Answer the RDF Property for the DAML samePropertyAs property on Properties
 Property DAMLVocabulary.oneOf()
          Answer the RDF Property for the oneOf property on DAML class expressions
 Property DAMLVocabulary.intersectionOf()
          Answer the RDF Property for the intersectionOf property on class expressions
 Property DAMLVocabulary.unionOf()
          Answer the RDF Property for the unionOf property on class expressions
 Property DAMLVocabulary.complementOf()
          Answer the RDF Property for the complementOf property on class expressions
 Property DAMLVocabulary.equivalentTo()
          Answer the RDF Property for the equivalentTo property on DAML values
 Property DAMLVocabulary.onProperty()
          Answer the RDF Property for the DAML onProperty property on Restrictions
 Property DAMLVocabulary.toClass()
          Answer the RDF Property for the DAML toClass property on Restrictions
 Property DAMLVocabulary.hasValue()
          Answer the RDF Property for the DAML hasValue property on Restrictions
 Property DAMLVocabulary.hasClass()
          Answer the RDF Property for the DAML hasClass property on Restrictions
 Property DAMLVocabulary.hasClassQ()
          Answer the RDF Property for the DAML hasClassQ property on Restrictions
 Property DAMLVocabulary.cardinality()
          Answer the RDF Property for the DAML cardinality property on Restrictions
 Property DAMLVocabulary.minCardinality()
          Answer the RDF Property for the DAML minCardinality property on Restrictions
 Property DAMLVocabulary.maxCardinality()
          Answer the RDF Property for the DAML maxCardinality property on Restrictions
 Property DAMLVocabulary.cardinalityQ()
          Answer the RDF Property for the DAML cardinalityQ property on Restrictions
 Property DAMLVocabulary.minCardinalityQ()
          Answer the RDF Property for the DAML minCardinalityQ property on Restrictions
 Property DAMLVocabulary.maxCardinalityQ()
          Answer the RDF Property for the DAML maxCardinalityQ property on Restrictions
 Property DAMLVocabulary.inverseOf()
          Answer the RDF Property for the DAML inverseOf property on Properties
 Property DAMLVocabulary.first()
          Answer the RDF Property for the DAML first property on Lists
 Property DAMLVocabulary.rest()
          Answer the RDF Property for the DAML rest property on Lists
 Property DAMLVocabulary.item()
          Answer the RDF Property for the DAML item property on Lists
 Property DAMLVocabulary.subPropertyOf()
          Answer the Alias for rdfs:subPropertyOf in daml namespace
 Property DAMLVocabulary.type()
          Answer the Alias for rdf:type in daml namespace
 Property DAMLVocabulary.value()
          Answer the Alias for rdf:value in daml namespace
 Property DAMLVocabulary.subClassOf()
          Answer the Alias for rdfs:subClassOf in daml namespace
 Property DAMLVocabulary.domain()
          Answer the Alias for rdfs:domain in daml namespace
 Property DAMLVocabulary.range()
          Answer the Alias for rdfs:range in daml namespace
 Property DAMLVocabulary.label()
          Answer the Alias for rdfs:label in daml namespace
 Property DAMLVocabulary.comment()
          Answer the Alias for rdfs:comment in daml namespace
 Property DAMLVocabulary.seeAlso()
          Answer the Alias for rdfs:seeAlso in daml namespace
 Property DAMLVocabulary.isDefinedBy()
          Answer the Alias for rdfs:isDefinedBy in daml namespace
 Property DAMLVocabulary.sameIndividualAs()
          Answer the RDF Property for the DAML sameIndividualAs property on instances
 Property DAMLVocabulary.differentIndividualFrom()
          Answer the RDF Property for the DAML differentIndvidualFrom property on instances
 



Copyright © 2001-2003 Hewlett-Packard. All Rights Reserved.