1 /*
2 * Licensed to the Apache Software Foundation (ASF) under one or more
3 * contributor license agreements. See the NOTICE file distributed with
4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17 package org.apache.any23.vocab;
18
19 import org.eclipse.rdf4j.model.IRI;
20
21 /**
22 * <p>
23 * An implementation of the <a href="https://github.com/RinkeHoekstra/lkif-core">lkif-core</a> vocabulary which is a
24 * library of ontologies relevant for the legal domain. The library consists of 15 modules, each of which describes a
25 * set of closely related concepts from both legal and commonsense domains.
26 * </p>
27 *
28 * <p>
29 * The time module provides an OWL DL implementation of the theory of time by Allen (1984).
30 * </p>
31 *
32 * @author lewismc
33 *
34 */
35 public class LKIFCoreTime extends Vocabulary {
36
37 /**
38 * The namespace of the vocabulary as a string.
39 */
40 public static final String NS = "http://www.estrellaproject.org/lkif-core/time.owl#";
41
42 private static LKIFCoreTime instance;
43
44 public static LKIFCoreTime getInstance() {
45 if (instance == null) {
46 instance = new LKIFCoreTime();
47 }
48 return instance;
49 }
50
51 ///////////////////////////////////////////////////////
52 /* http://www.estrellaproject.org/lkif-core/time.owl */
53 ///////////////////////////////////////////////////////
54 // CLASSES
55 public final IRI Interval = createClass(NS, "Interval");
56 public final IRI Moment = createClass(NS, "Moment");
57 public final IRI Pair_Of_Periods = createClass(NS, "Pair_Of_Periods");
58 public final IRI Temporal_Occurrence = createClass(NS, "Temporal_Occurrence");
59
60 // RESOURCES
61
62 // PROPERTIES
63 public final IRI after = createProperty(NS, "after");
64 public final IRI before = createProperty(NS, "before");
65 public final IRI between = createProperty(NS, "between");
66 public final IRI during = createProperty(NS, "during");
67 public final IRI finishes = createProperty(NS, "finishes");
68 public final IRI immediately_after = createProperty(NS, "immediately_after");
69 public final IRI immediately_before = createProperty(NS, "immediately_before");
70 public final IRI overlap = createProperty(NS, "overlap");
71 public final IRI preceeds = createProperty(NS, "preceeds");
72 public final IRI starts = createProperty(NS, "starts");
73 public final IRI temporal_relation = createProperty(NS, "temporal_relation");
74
75 private LKIFCoreTime() {
76 super(NS);
77 }
78
79 }