01: /*
02: * LICENSE INFORMATION
03: * Copyright 2005-2007 by FZI (http://www.fzi.de).
04: * Licensed under a BSD license (http://www.opensource.org/licenses/bsd-license.php)
05: * <OWNER> = Max Völkel
06: * <ORGANIZATION> = FZI Forschungszentrum Informatik Karlsruhe, Karlsruhe, Germany
07: * <YEAR> = 2007
08: *
09: * Project information at http://semweb4j.org/rdf2go
10: *
11: * Created on Nov 29, 2004
12: *
13: */
14: package org.ontoware.rdf2go.vocabulary;
15:
16: import org.ontoware.rdf2go.model.node.URI;
17: import org.ontoware.rdf2go.model.node.impl.URIImpl;
18:
19: /**
20: * RDFS vocabulary items as URIs
21: */
22: public class RDFS {
23:
24: /**
25: * The RDF Schema Namespace
26: */
27: public static final String RDFS_NS = "http://www.w3.org/2000/01/rdf-schema#";
28:
29: protected static final URI toURI(String local) {
30: return new URIImpl(RDFS_NS + local, false);
31: }
32:
33: public static final URI Class = toURI("Class");
34:
35: public static final URI Datatype = toURI("Datatype");
36:
37: /**
38: * This URI was present in http://www.w3.org/TR/2000/CR-rdf-schema-20000327/ but removed for final 1.0 spec
39: * @deprecated
40: */
41: public static final URI ConstraintProperty = toURI("ConstraintProperty");
42:
43: public static final URI Container = toURI("Container");
44:
45: public static final URI ContainerMembershipProperty = toURI("ContainerMembershipProperty");
46:
47: /**
48: * This URI was present in http://www.w3.org/TR/2000/CR-rdf-schema-20000327/ but removed for final 1.0 spec
49: * @deprecated
50: */
51: public static final URI ConstraintResource = toURI("ConstraintResource");
52:
53: /** http://www.w3.org/2000/01/rdf-schema#Literal */
54: public static final URI Literal = toURI("Literal");
55:
56: public static final URI XMLLiteral = toURI("XMLLiteral");
57:
58: /** http://www.w3.org/2000/01/rdf-schema#Resource * */
59: public static final URI Resource = toURI("Resource");
60:
61: public static final URI comment = toURI("comment");
62:
63: public static final URI domain = toURI("domain");
64:
65: public static final URI label = toURI("label");
66:
67: public static final URI isDefinedBy = toURI("isDefinedBy");
68:
69: public static final URI range = toURI("range");
70:
71: public static final URI seeAlso = toURI("seeAlso");
72:
73: public static final URI subClassOf = toURI("subClassOf");
74:
75: public static final URI subPropertyOf = toURI("subPropertyOf");
76:
77: public static final URI member = toURI("member");
78:
79: }
|