Skip to content

Method: SequencesVocabulary()

1: /*
2: * JOPA
3: * Copyright (C) 2024 Czech Technical University in Prague
4: *
5: * This library is free software; you can redistribute it and/or
6: * modify it under the terms of the GNU Lesser General Public
7: * License as published by the Free Software Foundation; either
8: * version 3.0 of the License, or (at your option) any later version.
9: *
10: * This library is distributed in the hope that it will be useful,
11: * but WITHOUT ANY WARRANTY; without even the implied warranty of
12: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13: * Lesser General Public License for more details.
14: *
15: * You should have received a copy of the GNU Lesser General Public
16: * License along with this library.
17: */
18: package cz.cvut.kbss.jopa.model;
19:
20: import java.net.URI;
21:
22: /* GENERATED CODE - DO NOT MODIFY */
23: public class SequencesVocabulary {
24:
25: // http://krizik.felk.cvut.cz/ontologies/2008/sequences.owl//
26: // ========================= Classes =========================
27: public static final String s_c_Nothing = "http://www.w3.org/2002/07/owl#Nothing";
28: public static final URI c_Nothing = URI.create(s_c_Nothing);
29: public static final String s_c_EmptyList = "http://krizik.felk.cvut.cz/ontologies/2008/6/sequences.owl#EmptyList";
30: public static final URI c_EmptyList = URI.create(s_c_EmptyList);
31: public static final String s_c_OWLList = "http://krizik.felk.cvut.cz/ontologies/2008/6/sequences.owl#OWLList";
32: public static final URI c_OWLList = URI.create(s_c_OWLList);
33: public static final URI c_OWLSimpleList = URI
34: .create("http://krizik.felk.cvut.cz/ontologies/2008/6/sequences.owl#OWLSimpleList");
35: public static final URI c_OWLReferencedList = URI
36: .create("http://krizik.felk.cvut.cz/ontologies/2008/6/sequences.owl#OWLComplexList");
37:
38: // ========================= Object Properties =========================
39: public static final String s_p_hasListItem = "http://krizik.felk.cvut.cz/ontologies/2008/sequences.owl#hasListItem";
40: public static final URI p_hasListItem = URI.create(s_p_hasListItem);
41: public static final String s_p_hasListProperty = "http://krizik.felk.cvut.cz/ontologies/2008/6/sequences.owl#hasListProperty";
42: public static final URI p_hasListProperty = URI.create(s_p_hasListProperty);
43: public static final String s_p_hasContents = "http://krizik.felk.cvut.cz/ontologies/2008/6/sequences.owl#hasContents";
44: public static final URI p_hasContents = URI.create(s_p_hasContents);
45: public static final String s_p_hasNext = "http://krizik.felk.cvut.cz/ontologies/2008/sequences.owl#hasNext";
46: public static final URI p_hasNext = URI.create(s_p_hasNext);
47: public static final String s_p_isFollowedBy = "http://krizik.felk.cvut.cz/ontologies/2008/6/sequences.owl#isFollowedBy";
48: public static final URI p_isFollowedBy = URI.create(s_p_isFollowedBy);
49:
50: // ======================= collections.owl ================================
51: public static final String c_List = "http://swan.mindinformatics.org/ontologies/1.2/collections/List";
52: public static final String p_element = "http://swan.mindinformatics.org/ontologies/1.2/collections/element";
53: public static final String c_Collection = "http://swan.mindinformatics.org/ontologies/1.2/collections/Collection";
54:
55: private SequencesVocabulary() {
56: throw new AssertionError();
57: }
58: }