1   package eu.fbk.knowledgestore.vocabulary;
2   
3   import org.openrdf.model.Namespace;
4   import org.openrdf.model.URI;
5   import org.openrdf.model.impl.NamespaceImpl;
6   import org.openrdf.model.impl.ValueFactoryImpl;
7   
8   /**
9    * Constants for the NewsReader Data Model.
10   * 
11   * @see <a href="http://dkm.fbk.eu/ontologies/newsreader">vocabulary specification</a>
12   */
13  public final class NWR {
14  
15      /** Recommended prefix for the vocabulary namespace: "nwr". */
16      public static final String PREFIX = "nwr";
17  
18      /** Vocabulary namespace: "http://dkm.fbk.eu/ontologies/newsreader#". */
19      public static final String NAMESPACE = "http://dkm.fbk.eu/ontologies/newsreader#";
20  
21      /** Immutable {@link Namespace} constant for the vocabulary namespace. */
22      public static final Namespace NS = new NamespaceImpl(PREFIX, NAMESPACE);
23  
24      // CLASSES
25  
26      /** Class nwr:Aspect. */
27      public static final URI ASPECT_ENUM = createURI("Aspect");
28  
29      /** Class nwr:CLink. */
30      public static final URI CLINK = createURI("CLink");
31  
32      /** Class nwr:CSignalMention. */
33      public static final URI CSIGNAL_MENTION = createURI("CSignalMention");
34  
35      /** Class nwr:Certainty. */
36      public static final URI CERTAINTY_ENUM = createURI("Certainty");
37  
38      /** Class nwr:EntityClass. */
39      public static final URI ENTITY_CLASS_ENUM = createURI("EntityClass");
40  
41      /** Class nwr:EntityMention. */
42      public static final URI ENTITY_MENTION = createURI("EntityMention");
43  
44      /** Class nwr:EntityType. */
45      public static final URI ENTITY_TYPE_ENUM = createURI("EntityType");
46  
47      /** Class nwr:EventClass. */
48      public static final URI EVENT_CLASS_ENUM = createURI("EventClass");
49  
50      /** Class nwr:EventMention. */
51      public static final URI EVENT_MENTION = createURI("EventMention");
52  
53      /** Class nwr:Factuality. */
54      public static final URI FACTUALITY_ENUM = createURI("Factuality");
55  
56      /** Class nwr:Factuality. */
57      public static final URI FACTBANK = createURI("factbank");
58  
59      /** Class nwr:Factuality. */
60      public static final URI ATTRIBUTION_TENSE = createURI("attributionTense");
61  
62      /** Class nwr:Factuality. */
63      public static final URI ATTRIBUTION_CERTAINTY = createURI("attributionCertainty");
64  
65      /** Class nwr:Factuality. */
66      public static final URI ATTRIBUTION_POLARITY = createURI("attributionPolarity");
67  
68      /** Class nwr:FunctionInDocument. */
69      public static final URI FUNCTION_IN_DOCUMENT_ENUM = createURI("FunctionInDocument");
70  
71      /** Class nwr:GLink. */
72      public static final URI GLINK = createURI("GLink");
73  
74      /** Class nwr:NAFDocument. */
75      public static final URI NAFDOCUMENT = createURI("NAFDocument");
76  
77      /** Class nwr:NAFLayer. */
78      public static final URI NAFLAYER_ENUM = createURI("NAFLayer");
79  
80      /** Class nwr:NAFProcessor. */
81      public static final URI NAFPROCESSOR = createURI("NAFProcessor");
82  
83      /** Class nwr:NAFProcessor. */
84      public static final URI MODULES = createURI("modules");
85  
86      /** Class nwr:News. */
87      public static final URI NEWS = createURI("News");
88  
89      /** Class nwr:ObjectMention. */
90      public static final URI OBJECT_MENTION = createURI("ObjectMention");
91  
92      /** Class nwr:PartOfSpeech. */
93      public static final URI PART_OF_SPEECH_ENUM = createURI("PartOfSpeech");
94  
95      /** Class nwr:Participation. */
96      public static final URI PARTICIPATION = createURI("Participation");
97  
98      /** Class nwr:Polarity. */
99      public static final URI POLARITY_ENUM = createURI("Polarity");
100 
101     /** Class nwr:RelationMention. */
102     public static final URI RELATION_MENTION = createURI("RelationMention");
103 
104     /** Class nwr:SLink. */
105     public static final URI SLINK = createURI("SLink");
106 
107     /** Class nwr:SignalMention. */
108     public static final URI SIGNAL_MENTION = createURI("SignalMention");
109 
110     /** Class nwr:SyntacticType. */
111     public static final URI SYNTACTIC_TYPE_ENUM = createURI("SyntacticType");
112 
113     /** Class nwr:TIMEX3Modifier. */
114     public static final URI TIMEX3_MODIFIER_ENUM = createURI("TIMEX3Modifier");
115 
116     /** Class nwr:TIMEX3Type. */
117     public static final URI TIMEX3_TYPE_ENUM = createURI("TIMEX3Type");
118 
119     /** Class nwr:TLink. */
120     public static final URI TLINK = createURI("TLink");
121 
122     /** Class nwr:TLinkType. */
123     public static final URI TLINK_TYPE_ENUM = createURI("TLinkType");
124 
125     /** Class nwr:Tense. */
126     public static final URI TENSE_ENUM = createURI("Tense");
127 
128     /** Class nwr:TimeMention. */
129     public static final URI TIME_MENTION = createURI("TimeMention");
130 
131     /** Class nwr:TimeOrEventMention. */
132     public static final URI TIME_OR_EVENT_MENTION = createURI("TimeOrEventMention");
133 
134     /** Class nwr:ValueMention. */
135     public static final URI VALUE_MENTION = createURI("ValueMention");
136 
137     /** Class nwr:ValueType. */
138     public static final URI VALUE_TYPE_ENUM = createURI("ValueType");
139 
140     // PROPERTIES
141     
142     /** Property nwr:section. */
143     public static final URI SECTION = createURI("section");
144     
145     /** Property nwr:magazine. */
146     public static final URI MAGAZINE = createURI("magazine");
147 
148     /** Property nwr:location. */
149     public static final URI LOCATION = createURI("location");
150     
151     /** Property nwr:publisher. */
152     public static final URI PUBLISHER = createURI("publisher");
153 
154     /** Property nwr:anchorTime. */
155     public static final URI ANCHOR_TIME = createURI("anchorTime");
156 
157     /** Property nwr:annotatedWith. */
158     public static final URI ANNOTATED_WITH = createURI("annotatedWith");
159 
160     /** Property nwr:annotationOf. */
161     public static final URI ANNOTATION_OF = createURI("annotationOf");
162 
163     /** Property nwr:aspect. */
164     public static final URI ASPECT = createURI("aspect");
165 
166     /** Property nwr:beginPoint. */
167     public static final URI BEGIN_POINT = createURI("beginPoint");
168 
169     /** Property nwr:certainty. */
170     public static final URI CERTAINTY = createURI("certainty");
171 
172     /** Property nwr:confidence. */
173     public static final URI CONFIDENCE = createURI("confidence");
174 
175     /** Property nwr:crystallized. */
176     public static final URI CRYSTALLIZED = createURI("crystallized");
177 
178     /** Property nwr:csignal. */
179     public static final URI CSIGNAL = createURI("csignal");
180 
181     /** Property nwr:endPoint. */
182     public static final URI END_POINT = createURI("endPoint");
183 
184     /** Property nwr:entityClass. */
185     public static final URI ENTITY_CLASS = createURI("entityClass");
186 
187     /** Property nwr:entityType. */
188     public static final URI ENTITY_TYPE = createURI("entityType");
189 
190     /** Property nwr:eventClass. */
191     public static final URI EVENT_CLASS = createURI("eventClass");
192 
193     /** Property nwr:factuality. */
194     public static final URI FACTUALITY = createURI("factuality");
195 
196     /** Property nwr:factualityConfidence. */
197     public static final URI FACTUALITY_CONFIDENCE = createURI("factualityConfidence");
198     
199     /** Property nwr:factBank. */
200     public static final URI FACT_BANK = createURI("factBank");
201     
202 
203     /** Property nwr:framenetRef. */
204     public static final URI FRAMENET_REF = createURI("framenetRef");
205 
206     /** Property nwr:freq. */
207     public static final URI FREQ = createURI("freq");
208 
209     /** Property nwr:functionInDocument. */
210     public static final URI FUNCTION_IN_DOCUMENT = createURI("functionInDocument");
211 
212     /** Property nwr:layer. */
213     public static final URI LAYER = createURI("layer");
214 
215     /** Property nwr:localCorefID. */
216     public static final URI LOCAL_COREF_ID = createURI("localCorefID");
217 
218     /** Property nwr:mod. */
219     public static final URI MOD = createURI("mod");
220 
221     /** Property nwr:modality. */
222     public static final URI MODALITY = createURI("modality");
223 
224     /** Property nwr:nombankRef. */
225     public static final URI NOMBANK_REF = createURI("nombankRef");
226 
227     /** Property nwr:esoRef. */
228     public static final URI ESO_REF = createURI("esoRef");
229 
230     /** Property nwr:originalFileFormat. */
231     public static final URI ORIGINAL_FILE_FORMAT = createURI("originalFileFormat");
232 
233     /** Property nwr:originalFileName. */
234     public static final URI ORIGINAL_FILE_NAME = createURI("originalFileName");
235 
236     /** Property nwr:originalPages. */
237     public static final URI ORIGINAL_PAGES = createURI("originalPages");
238 
239     /** Property nwr:polarity. */
240     public static final URI POLARITY = createURI("polarity");
241 
242     /** Property nwr:pos. */
243     public static final URI POS = createURI("pos");
244 
245     /** Property nwr:pred. */
246     public static final URI PRED = createURI("pred");
247 
248     /** Property nwr:propbankRef. */
249     public static final URI PROPBANK_REF = createURI("propbankRef");
250 
251     /** Property nwr:quant. */
252     public static final URI QUANT = createURI("quant");
253 
254     /** Property nwr:relType. */
255     public static final URI REL_TYPE = createURI("relType");
256 
257     /** Property nwr:signal. */
258     public static final URI SIGNAL = createURI("signal");
259 
260     /** Property nwr:source. */
261     public static final URI SOURCE = createURI("source");
262 
263     /** Property nwr:syntacticHead. */
264     public static final URI SYNTACTIC_HEAD = createURI("syntacticHead");
265 
266     /** Property nwr:syntacticType. */
267     public static final URI SYNTACTIC_TYPE = createURI("syntacticType");
268 
269     /** Property nwr:target. */
270     public static final URI TARGET = createURI("target");
271 
272     /** Property nwr:temporalFunction. */
273     public static final URI TEMPORAL_FUNCTION = createURI("temporalFunction");
274 
275     /** Property nwr:tense. */
276     public static final URI TENSE = createURI("tense");
277 
278     /** Property nwr:termID. */
279     public static final URI TERM_ID = createURI("termID");
280 
281     /** Property nwr:thematicRole. */
282     public static final URI THEMATIC_ROLE = createURI("thematicRole");
283 
284     /** Property nwr:timeType. */
285     public static final URI TIME_TYPE = createURI("timeType");
286 
287     /** Property nwr:value. */
288     public static final URI VALUE = createURI("value");
289 
290     /** Property nwr:valueFromFunction. */
291     public static final URI VALUE_FROM_FUNCTION = createURI("valueFromFunction");
292 
293     /** Property nwr:valueType. */
294     public static final URI VALUE_TYPE = createURI("valueType");
295 
296     /** Property nwr:verbnetRef. */
297     public static final URI VERBNET_REF = createURI("verbnetRef");
298 
299     /** Property nwr:version. */
300     public static final URI VERSION = createURI("version");
301 
302     // INDIVIDUALS
303 
304     /** Individual nwr:aspect_none. */
305     public static final URI ASPECT_NONE = createURI("aspect_none");
306 
307     /** Individual nwr:aspect_perfective. */
308     public static final URI ASPECT_PERFECTIVE = createURI("aspect_perfective");
309 
310     /** Individual nwr:aspect_perfective_progressive. */
311     public static final URI ASPECT_PERFECTIVE_PROGRESSIVE = createURI(//
312     "aspect_perfective_progressive");
313 
314     /** Individual nwr:aspect_progressive. */
315     public static final URI ASPECT_PROGRESSIVE = createURI("aspect_progressive");
316 
317     /** Individual nwr:certain. */
318     public static final URI CERTAIN = createURI("certain");
319 
320     /** Individual nwr:counterfactual. */
321     public static final URI COUNTERFACTUAL = createURI("counterfactual");
322 
323     /** Individual nwr:entity_class_gen. */
324     public static final URI ENTITY_CLASS_GEN = createURI("entity_class_gen");
325 
326     /** Individual nwr:entity_class_neg. */
327     public static final URI ENTITY_CLASS_NEG = createURI("entity_class_neg");
328 
329     /** Individual nwr:entity_class_spc. */
330     public static final URI ENTITY_CLASS_SPC = createURI("entity_class_spc");
331 
332     /** Individual nwr:entity_class_usp. */
333     public static final URI ENTITY_CLASS_USP = createURI("entity_class_usp");
334 
335     /** Individual nwr:entity_type_fin. */
336     public static final URI ENTITY_TYPE_FIN = createURI("entity_type_fin");
337 
338     /** Individual nwr:entity_type_loc. */
339     public static final URI ENTITY_TYPE_LOC = createURI("entity_type_loc");
340 
341     /** Individual nwr:entity_type_mix. */
342     public static final URI ENTITY_TYPE_MIX = createURI("entity_type_mix");
343 
344     /** Individual nwr:entity_type_org. */
345     public static final URI ENTITY_TYPE_ORG = createURI("entity_type_org");
346 
347     /** Individual nwr:entity_type_per. */
348     public static final URI ENTITY_TYPE_PER = createURI("entity_type_per");
349 
350     /** Individual nwr:entity_type_pro. */
351     public static final URI ENTITY_TYPE_PRO = createURI("entity_type_pro");
352 
353     /** Individual nwr:event_grammatical. */
354     public static final URI EVENT_GRAMMATICAL = createURI("event_grammatical");
355 
356     /** Individual nwr:event_other. */
357     public static final URI EVENT_OTHER = createURI("event_other");
358 
359     /** Individual nwr:event_speech_cognitive. */
360     public static final URI EVENT_SPEECH_COGNITIVE = createURI("event_speech_cognitive");
361 
362     /** Individual nwr:factual. */
363     public static final URI FACTUAL = createURI("factual");
364 
365     /** Individual nwr:function_creation_time. */
366     public static final URI FUNCTION_CREATION_TIME = createURI("function_creation_time");
367 
368     /** Individual nwr:function_expiration_time. */
369     public static final URI FUNCTION_EXPIRATION_TIME = createURI("function_expiration_time");
370 
371     /** Individual nwr:function_modification_time. */
372     public static final URI FUNCTION_MODIFICATION_TIME = createURI("function_modification_time");
373 
374     /** Individual nwr:function_none. */
375     public static final URI FUNCTION_NONE = createURI("function_none");
376 
377     /** Individual nwr:function_publication_time. */
378     public static final URI FUNCTION_PUBLICATION_TIME = createURI("function_publication_time");
379 
380     /** Individual nwr:function_reception_time. */
381     public static final URI FUNCTION_RECEPTION_TIME = createURI("function_reception_time");
382 
383     /** Individual nwr:function_release_time. */
384     public static final URI FUNCTION_RELEASE_TIME = createURI("function_release_time");
385 
386     /** Individual nwr:layer_chunks. */
387     public static final URI LAYER_CHUNKS = createURI("layer_chunks");
388 
389     /** Individual nwr:layer_constituency. */
390     public static final URI LAYER_CONSTITUENCY = createURI("layer_constituency");
391 
392     /** Individual nwr:layer_coreferences. */
393     public static final URI LAYER_COREFERENCES = createURI("layer_coreferences");
394 
395     /** Individual nwr:layer_deps. */
396     public static final URI LAYER_DEPS = createURI("layer_deps");
397 
398     /** Individual nwr:layer_entities. */
399     public static final URI LAYER_ENTITIES = createURI("layer_entities");
400 
401     /** Individual nwr:layer_factuality. */
402     public static final URI LAYER_FACTUALITY = createURI("layer_factuality");
403 
404     /** Individual nwr:layer_raw. */
405     public static final URI LAYER_RAW = createURI("layer_raw");
406 
407     /** Individual nwr:layer_srl. */
408     public static final URI LAYER_SRL = createURI("layer_srl");
409 
410     /** Individual nwr:layer_terms. */
411     public static final URI LAYER_TERMS = createURI("layer_terms");
412 
413     /** Individual nwr:layer_text. */
414     public static final URI LAYER_TEXT = createURI("layer_text");
415 
416     /** Individual nwr:layer_time_expressions. */
417     public static final URI LAYER_TIME_EXPRESSIONS = createURI("layer_time_expressions");
418 
419     /** Individual nwr:layer_time_expressions. */
420     public static final URI LAYER_TOPICS = createURI("layer_topics");
421     
422     /** Individual nwr:layer_time_expressions. */
423     public static final URI LAYER_MARKABLES = createURI("layer_markables");
424     
425     /** Individual nwr:layer_time_expressions. */
426     public static final URI LAYER_FACTUALITIES = createURI("layer_factualities");
427     
428     /** Individual nwr:layer_opinions. */
429     public static final URI LAYER_OPINIONS = createURI("layer_opinions");
430 
431     /** Individual nwr:layer_temporal_relations. */
432     public static final URI LAYER_TEMPORAL_RELATIONS = createURI("layer_temporal_relations");
433 
434     /** Individual nwr:layer_causal_relations. */
435     public static final URI LAYER_CAUSAL_RELATIONS = createURI("layer_causal_relations");
436 
437     /** Individual nwr:layer_vua_multiword_tagger. */
438     public static final URI LAYER_VUA_MULTIWORD_TAGGER = createURI("layer_vua_multiword_tagger");
439 
440     /** Individual nwr:layer_vua_event_coref_intradoc_lemma_baseline. */
441     public static final URI LAYER_VUA_EVENT_COREF_INTRADOC_LEMMA_BASELINE = createURI("layer_vua_event_coref_intradoc_lemma_baseline");
442 
443     /** Individual nwr:mod_after. */
444     public static final URI MOD_AFTER = createURI("mod_after");
445 
446     /** Individual nwr:mod_approx. */
447     public static final URI MOD_APPROX = createURI("mod_approx");
448 
449     /** Individual nwr:mod_before. */
450     public static final URI MOD_BEFORE = createURI("mod_before");
451 
452     /** Individual nwr:mod_end. */
453     public static final URI MOD_END = createURI("mod_end");
454 
455     /** Individual nwr:mod_equal_or_less. */
456     public static final URI MOD_EQUAL_OR_LESS = createURI("mod_equal_or_less");
457 
458     /** Individual nwr:mod_equal_or_more. */
459     public static final URI MOD_EQUAL_OR_MORE = createURI("mod_equal_or_more");
460 
461     /** Individual nwr:mod_less_than. */
462     public static final URI MOD_LESS_THAN = createURI("mod_less_than");
463 
464     /** Individual nwr:mod_mid. */
465     public static final URI MOD_MID = createURI("mod_mid");
466 
467     /** Individual nwr:mod_more_than. */
468     public static final URI MOD_MORE_THAN = createURI("mod_more_than");
469 
470     /** Individual nwr:mod_on_or_after. */
471     public static final URI MOD_ON_OR_AFTER = createURI("mod_on_or_after");
472 
473     /** Individual nwr:mod_on_or_before. */
474     public static final URI MOD_ON_OR_BEFORE = createURI("mod_on_or_before");
475 
476     /** Individual nwr:mod_start. */
477     public static final URI MOD_START = createURI("mod_start");
478 
479     /** Individual nwr:non_factual. */
480     public static final URI NON_FACTUAL = createURI("non_factual");
481 
482     /** Individual nwr:polarity_neg. */
483     public static final URI POLARITY_NEG = createURI("polarity_neg");
484 
485     /** Individual nwr:polarity_pos. */
486     public static final URI POLARITY_POS = createURI("polarity_pos");
487 
488     /** Individual nwr:pos_noun. */
489     public static final URI POS_NOUN = createURI("pos_noun");
490 
491     /** Individual nwr:pos_other. */
492     public static final URI POS_OTHER = createURI("pos_other");
493 
494     /** Individual nwr:pos_verb. */
495     public static final URI POS_VERB = createURI("pos_verb");
496 
497     /** Individual nwr:syntactic_type_app. */
498     public static final URI SYNTACTIC_TYPE_APP = createURI("syntactic_type_app");
499 
500     /** Individual nwr:syntactic_type_arc. */
501     public static final URI SYNTACTIC_TYPE_ARC = createURI("syntactic_type_arc");
502 
503     /** Individual nwr:syntactic_type_conj. */
504     public static final URI SYNTACTIC_TYPE_CONJ = createURI("syntactic_type_conj");
505 
506     /** Individual nwr:syntactic_type_hls. */
507     public static final URI SYNTACTIC_TYPE_HLS = createURI("syntactic_type_hls");
508 
509     /** Individual nwr:syntactic_type_nam. */
510     public static final URI SYNTACTIC_TYPE_NAM = createURI("syntactic_type_nam");
511 
512     /** Individual nwr:syntactic_type_nom. */
513     public static final URI SYNTACTIC_TYPE_NOM = createURI("syntactic_type_nom");
514 
515     /** Individual nwr:syntactic_type_pre. */
516     public static final URI SYNTACTIC_TYPE_PRE = createURI("syntactic_type_pre");
517 
518     /** Individual nwr:syntactic_type_pro. */
519     public static final URI SYNTACTIC_TYPE_PRO = createURI("syntactic_type_pro");
520 
521     /** Individual nwr:syntactic_type_ptv. */
522     public static final URI SYNTACTIC_TYPE_PTV = createURI("syntactic_type_ptv");
523 
524     /** Individual nwr:tense_future. */
525     public static final URI TENSE_FUTURE = createURI("tense_future");
526 
527     /** Individual nwr:tense_infinitive. */
528     public static final URI TENSE_INFINITIVE = createURI("tense_infinitive");
529 
530     /** Individual nwr:tense_none. */
531     public static final URI TENSE_NONE = createURI("tense_none");
532 
533     /** Individual nwr:tense_past. */
534     public static final URI TENSE_PAST = createURI("tense_past");
535 
536     /** Individual nwr:tense_pastpart. */
537     public static final URI TENSE_PASTPART = createURI("tense_pastpart");
538 
539     /** Individual nwr:tense_present. */
540     public static final URI TENSE_PRESENT = createURI("tense_present");
541 
542     /** Individual nwr:tense_prespart. */
543     public static final URI TENSE_PRESPART = createURI("tense_prespart");
544 
545     /** Individual nwr:timex3_date. */
546     public static final URI TIMEX3_DATE = createURI("timex3_date");
547 
548     /** Individual nwr:timex3_duration. */
549     public static final URI TIMEX3_DURATION = createURI("timex3_duration");
550 
551     /** Individual nwr:timex3_set. */
552     public static final URI TIMEX3_SET = createURI("timex3_set");
553 
554     /** Individual nwr:timex3_time. */
555     public static final URI TIMEX3_TIME = createURI("timex3_time");
556 
557     /** Individual nwr:tlink_from_tmx0. */
558     public static final URI TLINK_FROM_TMX0 = createURI("tlink_from_tmx0");
559 
560     /** Individual nwr:tlink_tm_tmx0. */
561     public static final URI TLINK_TO_TMX0 = createURI("tlink_to_tmx0");
562 
563     /** Individual nwr:tlink_after. */
564     public static final URI TLINK_AFTER = createURI("tlink_after");
565 
566     /** Individual nwr:tlink_before. */
567     public static final URI TLINK_BEFORE = createURI("tlink_before");
568 
569     /** Individual nwr:tlink_begins. */
570     public static final URI TLINK_BEGINS = createURI("tlink_begins");
571 
572     /** Individual nwr:tlink_begun_by. */
573     public static final URI TLINK_BEGUN_BY = createURI("tlink_begun_by");
574 
575     /** Individual nwr:tlink_ended_by. */
576     public static final URI TLINK_ENDED_BY = createURI("tlink_ended_by");
577 
578     /** Individual nwr:tlink_ends. */
579     public static final URI TLINK_ENDS = createURI("tlink_ends");
580 
581     /** Individual nwr:tlink_iafter. */
582     public static final URI TLINK_IAFTER = createURI("tlink_iafter");
583 
584     /** Individual nwr:tlink_ibefore. */
585     public static final URI TLINK_IBEFORE = createURI("tlink_ibefore");
586 
587     /** Individual nwr:tlink_includes. */
588     public static final URI TLINK_INCLUDES = createURI("tlink_includes");
589 
590     /** Individual nwr:tlink_is_included. */
591     public static final URI TLINK_IS_INCLUDED = createURI("tlink_is_included");
592 
593     /** Individual nwr:tlink_measure. */
594     public static final URI TLINK_MEASURE = createURI("tlink_measure");
595 
596     /** Individual nwr:tlink_simultaneous. */
597     public static final URI TLINK_SIMULTANEOUS = createURI("tlink_simultaneous");
598 
599     /** Individual nwr:uncertain. */
600     public static final URI UNCERTAIN = createURI("uncertain");
601 
602     /** Individual nwr:value_money. */
603     public static final URI VALUE_MONEY = createURI("value_money");
604 
605     /** Individual nwr:value_percent. */
606     public static final URI VALUE_PERCENT = createURI("value_percent");
607 
608     /** Individual nwr:value_quantity. */
609     public static final URI VALUE_QUANTITY = createURI("value_quantity");
610 
611     // HELPER METHODS
612 
613     private static URI createURI(final String localName) {
614         return ValueFactoryImpl.getInstance().createURI(NAMESPACE, localName);
615     }
616 
617     private NWR() {
618     }
619 
620 }