[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RDF Schema Question: range of values of an rdfs:Class?

  • From: "Roger L. Costello" <costello@m...>
  • To: xml-dev@i...
  • Date: Tue, 04 May 1999 07:38:59 -0400

rdf schema example
I will state my question, then give an example to demonstrate my
question, and then restate my question.

Question: if I create an RDF Schema Class, then what is its rdf:range of
values?

Example: In section 7 of the RDF Schema spec there are a number
examples.  My question pertains to Example 1.  In Example 1 a Person
Class is defined.  A maritalStatus property is then defined and its
domain property is set to Person (i.e., the maritalStatus property can
be used with Person).  The range of maritalStatus is the Class
MaritalStatus.  Here are the definitions:

<rdfs:Class rdf:ID="Person">
  <rdfs:comment>The class of people.</rdfs:comment>
  <rdfs:subClassOf 
        rdf:resource="http://www.classtypes.org/useful_classes#Animal"/>
</rdfs:Class>

<rdf:Property ID="maritalStatus">
  <rdfs:range rdf:resource="#MaritalStatus"/>
  <rdfs:domain rdf:resource="#Person"/>
</rdf:Property>

<rdfs:Class rdf:ID="MaritalStatus"/>

In the example it says that the possible values for the maritalStatus
property are: {Married, Divorced, Single, Widowed}.  Here is where I
have a question.  How did the range of possible values for maritalStatus
suddenly get restricted to these four values?  In the example it creates
four instances of the MaritalStatus Class:

<MaritalStatus rdf:ID="Married"/>
<MaritalStatus rdf:ID="Divorced"/>
<MaritalStatus rdf:ID="Single"/>
<MaritalStatus rdf:ID="Widowed"/>

Presumably, this is where the four values were gotten from.  Something
seems fishy here.  I am having difficulty relating this to my Java
background.  In Java, if I create a class MaritalStatus:

public class MaritalStatus {...}

then in another class create some instances of MaritalStatus:

MaritalStatus married = new MaritalStatus();
MaritalStatus divorced = new MaritalStatus();
MaritalStatus single = new MaritalStatus();
MaritalStatus widowed = new MaritalStatus();

and now if I create a variable maritalStatus, of type MaritalStatus:

MaritalStatus maritalStatus;

then its range of possible values is not {married, divorced, single,
widowed}.  Certainly, maritalStatus can be set equal to one of these
instance variables.  For example:

maritalStatus = married;

However, it can take on values other than these as well.  For example:

maritalStatus = new MaritalStatus();

Okay, now that I've convinced myself that I don't understand the example
in the RDF Schema spec, let me restate my question:  how did that
example come up with just those four values for the maritalStatus
property?  In general, if I create a Class, how do I specify its range
of values?  Cheers!  /Roger


xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@i...
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To (un)subscribe, mailto:majordomo@i... the following message;
(un)subscribe xml-dev
To subscribe to the digests, mailto:majordomo@i... the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@i...)


PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.