Major update to the latest CDM definition 2.Nov.2007
[cdmlib.git] / cdmlibrary / src / main / java / eu / etaxonomy / cdm / model / taxon / ConceptRelationshipType.java
1 /**
2 * Copyright (C) 2007 EDIT
3 * European Distributed Institute of Taxonomy
4 * http://www.e-taxonomy.eu
5 *
6 * The contents of this file are subject to the Mozilla Public License Version 1.1
7 * See LICENSE.TXT at the top of this package for the full license terms.
8 */
9
10 package etaxonomy.cdm.model.taxon;
11
12
13 import etaxonomy.cdm.model.common.EnumeratedTermBase;
14 import org.apache.log4j.Logger;
15
16 /**
17 * @author m.doering
18 * @version 1.0
19 * @created 02-Nov-2007 18:14:41
20 */
21 public class ConceptRelationshipType extends EnumeratedTermBase {
22 static Logger logger = Logger.getLogger(ConceptRelationshipType.class);
23
24 @Description("")
25 private static final int initializationClassUri = http://rs.tdwg.org/ontology/voc/TaxonConcept#TaxonRelationshipTerm;
26
27 public getInitializationClassUri(){
28 return initializationClassUri;
29 }
30
31 /**
32 *
33 * @param newVal
34 */
35 public void setInitializationClassUri(newVal){
36 initializationClassUri = newVal;
37 }
38
39 public static final ConceptRelationshipType TAXONOMICALLY_INCLUDED_IN(){
40 return null;
41 }
42
43 public static final ConceptRelationshipType MISAPPLIED_NAME_FOR(){
44 return null;
45 }
46
47 public static final ConceptRelationshipType INVALID_DESIGNATION_FOR(){
48 return null;
49 }
50
51 public static final ConceptRelationshipType CONTRADICTION(){
52 return null;
53 }
54
55 public static final ConceptRelationshipType CONGRUENT_TO(){
56 return null;
57 }
58
59 public static final ConceptRelationshipType INCLUDED_IN(){
60 return null;
61 }
62
63 public static final ConceptRelationshipType CONGRUENT_TO_OR_INCLUDED_IN(){
64 return null;
65 }
66
67 public static final ConceptRelationshipType INCLUDES(){
68 return null;
69 }
70
71 public static final ConceptRelationshipType CONGRUENT_TO_OR_INCLUDES(){
72 return null;
73 }
74
75 public static final ConceptRelationshipType INCLUDED_IN_OR_INCLUDES(){
76 return null;
77 }
78
79 public static final ConceptRelationshipType CONGRUENT_TO_OR_INCLUDED_IN_OR_INCLUDES(){
80 return null;
81 }
82
83 public static final ConceptRelationshipType OVERLAPS(){
84 return null;
85 }
86
87 public static final ConceptRelationshipType CONGRUENT_TO_OR_OVERLAPS(){
88 return null;
89 }
90
91 public static final ConceptRelationshipType INCLUDED_IN_OR_OVERLAPS(){
92 return null;
93 }
94
95 public static final ConceptRelationshipType CONGRUENT_TO_OR_INCLUDED_IN_OR_OVERLAPS(){
96 return null;
97 }
98
99 public static final ConceptRelationshipType INCLUDES_OR_OVERLAPS(){
100 return null;
101 }
102
103 public static final ConceptRelationshipType CONGRUENT_TO_OR_INCLUDES_OR_OVERLAPS(){
104 return null;
105 }
106
107 public static final ConceptRelationshipType INCLUDED_IN_OR_INCLUDES_OR_OVERLAPS(){
108 return null;
109 }
110
111 public static final ConceptRelationshipType DOES_NOT_EXCLUDE(){
112 return null;
113 }
114
115 public static final ConceptRelationshipType EXCLUDES(){
116 return null;
117 }
118
119 public static final ConceptRelationshipType CONGRUENT_TO_OR_EXCLUDES(){
120 return null;
121 }
122
123 public static final ConceptRelationshipType INCLUDED_IN_OR_EXCLUDES(){
124 return null;
125 }
126
127 public static final ConceptRelationshipType CONGRUENT_TO_OR_INCLUDED_IN_OR_EXCLUDES(){
128 return null;
129 }
130
131 public static final ConceptRelationshipType INCLUDES_OR_EXCLUDES(){
132 return null;
133 }
134
135 public static final ConceptRelationshipType CONGRUENT_TO_OR_INCLUDES_OR_EXCLUDES(){
136 return null;
137 }
138
139 public static final ConceptRelationshipType INCLUDED_IN_OR_INCLUDES_OR_EXCLUDES(){
140 return null;
141 }
142
143 public static final ConceptRelationshipType DOES_NOT_OVERLAP(){
144 return null;
145 }
146
147 public static final ConceptRelationshipType OVERLAPS_OR_EXCLUDES(){
148 return null;
149 }
150
151 public static final ConceptRelationshipType CONGRUENT_TO_OR_OVERLAPS_OR_EXCLUDES(){
152 return null;
153 }
154
155 public static final ConceptRelationshipType INCLUDED_IN_OR_OVERLAPS_OR_EXCLUDES(){
156 return null;
157 }
158
159 public static final ConceptRelationshipType DOES_NOT_INCLUDE(){
160 return null;
161 }
162
163 public static final ConceptRelationshipType INCLUDES_OR_OVERLAPS_OR_EXCLUDES(){
164 return null;
165 }
166
167 public static final ConceptRelationshipType NOT_INCLUDED_IN(){
168 return null;
169 }
170
171 public static final ConceptRelationshipType NOT_CONGRUENT_TO(){
172 return null;
173 }
174
175 public static final ConceptRelationshipType ALL_RELATIONSHIPS(){
176 return null;
177 }
178
179 }