Skip to contentPackage: CommonVocabulary
CommonVocabulary
Coverage
1: /**
2: * Copyright (C) 2016 Czech Technical University in Prague
3: * <p>
4: * This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public
5: * License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later
6: * version.
7: * <p>
8: * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
9: * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
10: * details. You should have received a copy of the GNU General Public License along with this program. If not, see
11: * <http://www.gnu.org/licenses/>.
12: */
13: package cz.cvut.kbss.jopa;
14:
15: /**
16: * @deprecated Use {@link cz.cvut.kbss.jopa.vocabulary.OWL}, {@link cz.cvut.kbss.jopa.vocabulary.RDF}, {@link
17: * cz.cvut.kbss.jopa.vocabulary.RDFS}, {@link cz.cvut.kbss.jopa.vocabulary.XSD}
18: */
19: @Deprecated
20: public class CommonVocabulary {
21:
22: public static final String RDF_NAMESPACE = "http://www.w3.org/1999/02/22-rdf-syntax-ns#";
23: public static final String RDFS_NAMESPACE = "http://www.w3.org/2000/01/rdf-schema#";
24: public static final String XSD_NAMESPACE = "http://www.w3.org/2001/XMLSchema#";
25:
26: public static final String RDFS_LABEL = RDFS_NAMESPACE + "label";
27:
28: public static final String RDFS_COMMENT = RDFS_NAMESPACE + "comment";
29:
30: public static final String DC_DESCRIPTION = "http://purl.org/dc/elements/1.1/description";
31:
32: public static final String RDF_TYPE = RDF_NAMESPACE + "type";
33:
34: public static final String RDF_VALUE = RDF_NAMESPACE + "value";
35:
36: /**
37: * Boolean XML Schema data type.
38: */
39: public static final String XSD_BOOLEAN = XSD_NAMESPACE + "boolean";
40:
41: /**
42: * Short XML Schema data type.
43: */
44: public static final String XSD_SHORT = XSD_NAMESPACE + "short";
45:
46: /**
47: * Integer XML Schema data type.
48: */
49: public static final String XSD_INT = XSD_NAMESPACE + "int";
50:
51: /**
52: * Long XML Schema data type.
53: */
54: public static final String XSD_LONG = XSD_NAMESPACE + "long";
55:
56: /**
57: * Double XML Schema data type.
58: */
59: public static final String XSD_DOUBLE = XSD_NAMESPACE + "double";
60:
61: /**
62: * Float XML Schema data type.
63: */
64: public static final String XSD_FLOAT = XSD_NAMESPACE + "float";
65:
66: /**
67: * Date XML Schema data type.
68: */
69: public static final String XSD_DATETIME = XSD_NAMESPACE + "dateTime";
70:
71: private CommonVocabulary() {
72: throw new AssertionError();
73: }
74: }