diff options
| author | yzhou <yujiao.zhou@gmail.com> | 2015-04-21 10:34:27 +0100 |
|---|---|---|
| committer | yzhou <yujiao.zhou@gmail.com> | 2015-04-21 10:34:27 +0100 |
| commit | 9ce65c5a963b03ee97fe9cb6c5aa65a3c04a80a8 (patch) | |
| tree | 47511c0fb89dccff0db4b5990522e04f294d795b /src/uk/ac/ox/cs/pagoda/util/Namespace.java | |
| parent | b1ac207612ee8b045244253fb94b866104bc34f2 (diff) | |
| download | ACQuA-9ce65c5a963b03ee97fe9cb6c5aa65a3c04a80a8.tar.gz ACQuA-9ce65c5a963b03ee97fe9cb6c5aa65a3c04a80a8.zip | |
initial version
Diffstat (limited to 'src/uk/ac/ox/cs/pagoda/util/Namespace.java')
| -rw-r--r-- | src/uk/ac/ox/cs/pagoda/util/Namespace.java | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/uk/ac/ox/cs/pagoda/util/Namespace.java b/src/uk/ac/ox/cs/pagoda/util/Namespace.java new file mode 100644 index 0000000..07c8ebd --- /dev/null +++ b/src/uk/ac/ox/cs/pagoda/util/Namespace.java | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | package uk.ac.ox.cs.pagoda.util; | ||
| 2 | |||
| 3 | public class Namespace { | ||
| 4 | |||
| 5 | public static final String RDF_NS = "http://www.w3.org/1999/02/22-rdf-syntax-ns#"; | ||
| 6 | public static final String RDFS_NS = "http://www.w3.org/2000/01/rdf-schema#"; | ||
| 7 | public static final String OWL_NS = "http://www.w3.org/2002/07/owl#"; | ||
| 8 | public static final String XSD_NS = "http://www.w3.org/2001/XMLSchema#"; | ||
| 9 | public static final String SWRL_NS = "http://www.w3.org/2003/11/swrl#"; | ||
| 10 | public static final String SWRLB_NS = "http://www.w3.org/2003/11/swrlb#"; | ||
| 11 | public static final String SWRLX_NS = "http://www.w3.org/2003/11/swrlx#"; | ||
| 12 | public static final String RULEML_NS = "http://www.w3.org/2003/11/ruleml#"; | ||
| 13 | |||
| 14 | public static final String RDF_TYPE_QUOTED = "<" + RDF_NS + "type>"; | ||
| 15 | public static final String RDF_TYPE = RDF_NS + "type"; | ||
| 16 | public static final String RDF_TYPE_ABBR = "rdf:type"; | ||
| 17 | |||
| 18 | public static final String EQUALITY = OWL_NS + "sameAs"; | ||
| 19 | public static final String EQUALITY_QUOTED = "<" + EQUALITY + ">"; | ||
| 20 | public static final String EQUALITY_ABBR = "owl:sameAs"; | ||
| 21 | |||
| 22 | public static final String INEQUALITY = OWL_NS + "differentFrom"; | ||
| 23 | public static final String INEQUALITY_ABBR = "owl:differentFrom"; | ||
| 24 | public static final String INEQUALITY_QUOTED = "<" + INEQUALITY + ">"; | ||
| 25 | |||
| 26 | public static final String RDF_PLAIN_LITERAL = RDF_NS + "PlainLiteral"; | ||
| 27 | public static final String XSD_STRING = XSD_NS + "string"; | ||
| 28 | |||
| 29 | public static final String PAGODA_ANONY = "http://www.cs.ox.ac.uk/PAGOdA/skolemised#"; | ||
| 30 | public static final String PAGODA_AUX = "http://www.cs.ox.ac.uk/PAGOdA/auxiliary#"; | ||
| 31 | public static final String KARMA_ANONY = "http://www.cs.ox.ac.uk/KARMA/anonymous"; | ||
| 32 | public static final String PAGODA_ORIGINAL = PAGODA_AUX + "Original"; | ||
| 33 | |||
| 34 | } | ||
