summaryrefslogtreecommitdiff
path: root/src/traffic-incidents-service/org.genivi.trafficincidentsservice.trafficincidenttables-model/src/org/genivi/trafficincidentsservice/trafficincidenttables/CauseCode.java
blob: 4e31daaa37f4d89c846aca847a8f23cf85c647db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
/**
 * Copyright (C) 2013 TomTom International B.V.
 * 
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */
package org.genivi.trafficincidentsservice.trafficincidenttables;

import java.util.Arrays;
import java.util.Collections;
import java.util.List;

import org.eclipse.emf.common.util.Enumerator;

/**
 * <!-- begin-user-doc -->
 * A representation of the literals of the enumeration '<em><b>Cause Code</b></em>',
 * and utility methods for working with them.
 * <!-- end-user-doc -->
 * @see org.genivi.trafficincidentsservice.trafficincidenttables.trafficincidenttablesPackage#getCauseCode()
 * @model
 * @generated
 */
public enum CauseCode implements Enumerator {
  /**
	 * The '<em><b>TRAFFIC CONGESTION</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #TRAFFIC_CONGESTION_VALUE
	 * @generated
	 * @ordered
	 */
  TRAFFIC_CONGESTION(1, "TRAFFIC_CONGESTION", "TRAFFIC_CONGESTION"),

  /**
	 * The '<em><b>ACCIDENT</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #ACCIDENT_VALUE
	 * @generated
	 * @ordered
	 */
  ACCIDENT(2, "ACCIDENT", "ACCIDENT"),

  /**
	 * The '<em><b>ROADWORKS</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #ROADWORKS_VALUE
	 * @generated
	 * @ordered
	 */
  ROADWORKS(3, "ROADWORKS", "ROADWORKS"),

  /**
	 * The '<em><b>NARROW LANES</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #NARROW_LANES_VALUE
	 * @generated
	 * @ordered
	 */
  NARROW_LANES(4, "NARROW_LANES", "NARROW_LANES"),

  /**
	 * The '<em><b>IMPASSIBILITY</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #IMPASSIBILITY_VALUE
	 * @generated
	 * @ordered
	 */
  IMPASSIBILITY(5, "IMPASSIBILITY", "IMPASSIBILITY"),

  /**
	 * The '<em><b>SLIPPERY ROAD</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #SLIPPERY_ROAD_VALUE
	 * @generated
	 * @ordered
	 */
  SLIPPERY_ROAD(6, "SLIPPERY_ROAD", "SLIPPERY_ROAD"),

  /**
	 * The '<em><b>AQUAPLANING</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #AQUAPLANING_VALUE
	 * @generated
	 * @ordered
	 */
  AQUAPLANING(7, "AQUAPLANING", "AQUAPLANING"),

  /**
	 * The '<em><b>FIRE</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #FIRE_VALUE
	 * @generated
	 * @ordered
	 */
  FIRE(8, "FIRE", "FIRE"),

  /**
	 * The '<em><b>HAZARDOUS DRIVING CONDITIONS</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #HAZARDOUS_DRIVING_CONDITIONS_VALUE
	 * @generated
	 * @ordered
	 */
  HAZARDOUS_DRIVING_CONDITIONS(9, "HAZARDOUS_DRIVING_CONDITIONS", "HAZARDOUS_DRIVING_CONDITIONS"),

  /**
	 * The '<em><b>OBJECTS ON THE ROAD</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #OBJECTS_ON_THE_ROAD_VALUE
	 * @generated
	 * @ordered
	 */
  OBJECTS_ON_THE_ROAD(10, "OBJECTS_ON_THE_ROAD", "OBJECTS_ON_THE_ROAD"),

  /**
	 * The '<em><b>ANIMALS ON ROADWAY</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #ANIMALS_ON_ROADWAY_VALUE
	 * @generated
	 * @ordered
	 */
  ANIMALS_ON_ROADWAY(11, "ANIMALS_ON_ROADWAY", "ANIMALS_ON_ROADWAY"),

  /**
	 * The '<em><b>PEOPLE ON ROADWAY</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #PEOPLE_ON_ROADWAY_VALUE
	 * @generated
	 * @ordered
	 */
  PEOPLE_ON_ROADWAY(12, "PEOPLE_ON_ROADWAY", "PEOPLE_ON_ROADWAY"),

  /**
	 * The '<em><b>BROKEN DOWN VEHICLES</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #BROKEN_DOWN_VEHICLES_VALUE
	 * @generated
	 * @ordered
	 */
  BROKEN_DOWN_VEHICLES(13, "BROKEN_DOWN_VEHICLES", "BROKEN_DOWN_VEHICLES"),

  /**
	 * The '<em><b>VEHICLE ON WRONG CARRIAGEWAY</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #VEHICLE_ON_WRONG_CARRIAGEWAY_VALUE
	 * @generated
	 * @ordered
	 */
  VEHICLE_ON_WRONG_CARRIAGEWAY(14, "VEHICLE_ON_WRONG_CARRIAGEWAY", "VEHICLE_ON_WRONG_CARRIAGEWAY"),

  /**
	 * The '<em><b>RESCUE AND RECOVERY WORK IN PROGRESS</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #RESCUE_AND_RECOVERY_WORK_IN_PROGRESS_VALUE
	 * @generated
	 * @ordered
	 */
  RESCUE_AND_RECOVERY_WORK_IN_PROGRESS(15, "RESCUE_AND_RECOVERY_WORK_IN_PROGRESS", "RESCUE_AND_RECOVERY_WORK_IN_PROGRESS"),

  /**
	 * The '<em><b>REGULATORY MEASURE</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #REGULATORY_MEASURE_VALUE
	 * @generated
	 * @ordered
	 */
  REGULATORY_MEASURE(16, "REGULATORY_MEASURE", "REGULATORY_MEASURE"),

  /**
	 * The '<em><b>EXTREME WEATHER CONDITIONS</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #EXTREME_WEATHER_CONDITIONS_VALUE
	 * @generated
	 * @ordered
	 */
  EXTREME_WEATHER_CONDITIONS(17, "EXTREME_WEATHER_CONDITIONS", "EXTREME_WEATHER_CONDITIONS"),

  /**
	 * The '<em><b>VISIBILITY REDUCED</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #VISIBILITY_REDUCED_VALUE
	 * @generated
	 * @ordered
	 */
  VISIBILITY_REDUCED(18, "VISIBILITY_REDUCED", "VISIBILITY_REDUCED"),

  /**
	 * The '<em><b>PRECIPITATION</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #PRECIPITATION_VALUE
	 * @generated
	 * @ordered
	 */
  PRECIPITATION(19, "PRECIPITATION", "PRECIPITATION"),

  /**
	 * The '<em><b>RECKLESS PERSONS</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #RECKLESS_PERSONS_VALUE
	 * @generated
	 * @ordered
	 */
  RECKLESS_PERSONS(20, "RECKLESS_PERSONS", "RECKLESS_PERSONS"),

  /**
	 * The '<em><b>OVER HEIGHT WARNING SYSTEM TRIGGERED</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #OVER_HEIGHT_WARNING_SYSTEM_TRIGGERED_VALUE
	 * @generated
	 * @ordered
	 */
  OVER_HEIGHT_WARNING_SYSTEM_TRIGGERED(21, "OVER_HEIGHT_WARNING_SYSTEM_TRIGGERED", "OVER_HEIGHT_WARNING_SYSTEM_TRIGGERED"),

  /**
	 * The '<em><b>TRAFFIC REGULATIONS CHANGED</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #TRAFFIC_REGULATIONS_CHANGED_VALUE
	 * @generated
	 * @ordered
	 */
  TRAFFIC_REGULATIONS_CHANGED(22, "TRAFFIC_REGULATIONS_CHANGED", "TRAFFIC_REGULATIONS_CHANGED"),

  /**
	 * The '<em><b>MAJOR EVENT</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #MAJOR_EVENT_VALUE
	 * @generated
	 * @ordered
	 */
  MAJOR_EVENT(23, "MAJOR_EVENT", "MAJOR_EVENT"),

  /**
	 * The '<em><b>SERVICE NOT OPERATING</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #SERVICE_NOT_OPERATING_VALUE
	 * @generated
	 * @ordered
	 */
  SERVICE_NOT_OPERATING(24, "SERVICE_NOT_OPERATING", "SERVICE_NOT_OPERATING"),

  /**
	 * The '<em><b>SERVICE NOT USEABLE</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #SERVICE_NOT_USEABLE_VALUE
	 * @generated
	 * @ordered
	 */
  SERVICE_NOT_USEABLE(25, "SERVICE_NOT_USEABLE", "SERVICE_NOT_USEABLE"),

  /**
	 * The '<em><b>SLOW MOVING VEHICLES</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #SLOW_MOVING_VEHICLES_VALUE
	 * @generated
	 * @ordered
	 */
  SLOW_MOVING_VEHICLES(26, "SLOW_MOVING_VEHICLES", "SLOW_MOVING_VEHICLES"),

  /**
	 * The '<em><b>DANGEROUS END OF QUEUE</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #DANGEROUS_END_OF_QUEUE_VALUE
	 * @generated
	 * @ordered
	 */
  DANGEROUS_END_OF_QUEUE(27, "DANGEROUS_END_OF_QUEUE", "DANGEROUS_END_OF_QUEUE"),

  /**
	 * The '<em><b>RISK OF FIRE</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #RISK_OF_FIRE_VALUE
	 * @generated
	 * @ordered
	 */
  RISK_OF_FIRE(28, "RISK_OF_FIRE", "RISK_OF_FIRE"),

  /**
	 * The '<em><b>TIME DELAY</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #TIME_DELAY_VALUE
	 * @generated
	 * @ordered
	 */
  TIME_DELAY(29, "TIME_DELAY", "TIME_DELAY"),

  /**
	 * The '<em><b>POLICE CHECKPOINT</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #POLICE_CHECKPOINT_VALUE
	 * @generated
	 * @ordered
	 */
  POLICE_CHECKPOINT(30, "POLICE_CHECKPOINT", "POLICE_CHECKPOINT"),

  /**
	 * The '<em><b>MALFUNCTIONING ROADSIDE EQUIPMENT</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #MALFUNCTIONING_ROADSIDE_EQUIPMENT_VALUE
	 * @generated
	 * @ordered
	 */
  MALFUNCTIONING_ROADSIDE_EQUIPMENT(31, "MALFUNCTIONING_ROADSIDE_EQUIPMENT", "MALFUNCTIONING_ROADSIDE_EQUIPMENT");

  /**
	 * The '<em><b>TRAFFIC CONGESTION</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>TRAFFIC CONGESTION</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #TRAFFIC_CONGESTION
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int TRAFFIC_CONGESTION_VALUE = 1;

  /**
	 * The '<em><b>ACCIDENT</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>ACCIDENT</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #ACCIDENT
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int ACCIDENT_VALUE = 2;

  /**
	 * The '<em><b>ROADWORKS</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>ROADWORKS</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #ROADWORKS
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int ROADWORKS_VALUE = 3;

  /**
	 * The '<em><b>NARROW LANES</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>NARROW LANES</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #NARROW_LANES
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int NARROW_LANES_VALUE = 4;

  /**
	 * The '<em><b>IMPASSIBILITY</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>IMPASSIBILITY</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #IMPASSIBILITY
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int IMPASSIBILITY_VALUE = 5;

  /**
	 * The '<em><b>SLIPPERY ROAD</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>SLIPPERY ROAD</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #SLIPPERY_ROAD
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int SLIPPERY_ROAD_VALUE = 6;

  /**
	 * The '<em><b>AQUAPLANING</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>AQUAPLANING</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #AQUAPLANING
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int AQUAPLANING_VALUE = 7;

  /**
	 * The '<em><b>FIRE</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>FIRE</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #FIRE
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int FIRE_VALUE = 8;

  /**
	 * The '<em><b>HAZARDOUS DRIVING CONDITIONS</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>HAZARDOUS DRIVING CONDITIONS</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #HAZARDOUS_DRIVING_CONDITIONS
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int HAZARDOUS_DRIVING_CONDITIONS_VALUE = 9;

  /**
	 * The '<em><b>OBJECTS ON THE ROAD</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>OBJECTS ON THE ROAD</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #OBJECTS_ON_THE_ROAD
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int OBJECTS_ON_THE_ROAD_VALUE = 10;

  /**
	 * The '<em><b>ANIMALS ON ROADWAY</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>ANIMALS ON ROADWAY</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #ANIMALS_ON_ROADWAY
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int ANIMALS_ON_ROADWAY_VALUE = 11;

  /**
	 * The '<em><b>PEOPLE ON ROADWAY</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>PEOPLE ON ROADWAY</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #PEOPLE_ON_ROADWAY
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int PEOPLE_ON_ROADWAY_VALUE = 12;

  /**
	 * The '<em><b>BROKEN DOWN VEHICLES</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>BROKEN DOWN VEHICLES</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #BROKEN_DOWN_VEHICLES
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int BROKEN_DOWN_VEHICLES_VALUE = 13;

  /**
	 * The '<em><b>VEHICLE ON WRONG CARRIAGEWAY</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>VEHICLE ON WRONG CARRIAGEWAY</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #VEHICLE_ON_WRONG_CARRIAGEWAY
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int VEHICLE_ON_WRONG_CARRIAGEWAY_VALUE = 14;

  /**
	 * The '<em><b>RESCUE AND RECOVERY WORK IN PROGRESS</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>RESCUE AND RECOVERY WORK IN PROGRESS</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #RESCUE_AND_RECOVERY_WORK_IN_PROGRESS
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int RESCUE_AND_RECOVERY_WORK_IN_PROGRESS_VALUE = 15;

  /**
	 * The '<em><b>REGULATORY MEASURE</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>REGULATORY MEASURE</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #REGULATORY_MEASURE
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int REGULATORY_MEASURE_VALUE = 16;

  /**
	 * The '<em><b>EXTREME WEATHER CONDITIONS</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>EXTREME WEATHER CONDITIONS</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #EXTREME_WEATHER_CONDITIONS
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int EXTREME_WEATHER_CONDITIONS_VALUE = 17;

  /**
	 * The '<em><b>VISIBILITY REDUCED</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>VISIBILITY REDUCED</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #VISIBILITY_REDUCED
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int VISIBILITY_REDUCED_VALUE = 18;

  /**
	 * The '<em><b>PRECIPITATION</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>PRECIPITATION</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #PRECIPITATION
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int PRECIPITATION_VALUE = 19;

  /**
	 * The '<em><b>RECKLESS PERSONS</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>RECKLESS PERSONS</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #RECKLESS_PERSONS
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int RECKLESS_PERSONS_VALUE = 20;

  /**
	 * The '<em><b>OVER HEIGHT WARNING SYSTEM TRIGGERED</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>OVER HEIGHT WARNING SYSTEM TRIGGERED</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #OVER_HEIGHT_WARNING_SYSTEM_TRIGGERED
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int OVER_HEIGHT_WARNING_SYSTEM_TRIGGERED_VALUE = 21;

  /**
	 * The '<em><b>TRAFFIC REGULATIONS CHANGED</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>TRAFFIC REGULATIONS CHANGED</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #TRAFFIC_REGULATIONS_CHANGED
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int TRAFFIC_REGULATIONS_CHANGED_VALUE = 22;

  /**
	 * The '<em><b>MAJOR EVENT</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>MAJOR EVENT</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #MAJOR_EVENT
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int MAJOR_EVENT_VALUE = 23;

  /**
	 * The '<em><b>SERVICE NOT OPERATING</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>SERVICE NOT OPERATING</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #SERVICE_NOT_OPERATING
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int SERVICE_NOT_OPERATING_VALUE = 24;

  /**
	 * The '<em><b>SERVICE NOT USEABLE</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>SERVICE NOT USEABLE</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #SERVICE_NOT_USEABLE
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int SERVICE_NOT_USEABLE_VALUE = 25;

  /**
	 * The '<em><b>SLOW MOVING VEHICLES</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>SLOW MOVING VEHICLES</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #SLOW_MOVING_VEHICLES
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int SLOW_MOVING_VEHICLES_VALUE = 26;

  /**
	 * The '<em><b>DANGEROUS END OF QUEUE</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>DANGEROUS END OF QUEUE</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #DANGEROUS_END_OF_QUEUE
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int DANGEROUS_END_OF_QUEUE_VALUE = 27;

  /**
	 * The '<em><b>RISK OF FIRE</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>RISK OF FIRE</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #RISK_OF_FIRE
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int RISK_OF_FIRE_VALUE = 28;

  /**
	 * The '<em><b>TIME DELAY</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>TIME DELAY</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #TIME_DELAY
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int TIME_DELAY_VALUE = 29;

  /**
	 * The '<em><b>POLICE CHECKPOINT</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>POLICE CHECKPOINT</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #POLICE_CHECKPOINT
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int POLICE_CHECKPOINT_VALUE = 30;

  /**
	 * The '<em><b>MALFUNCTIONING ROADSIDE EQUIPMENT</b></em>' literal value.
	 * <!-- begin-user-doc -->
   * <p>
   * If the meaning of '<em><b>MALFUNCTIONING ROADSIDE EQUIPMENT</b></em>' literal object isn't clear,
   * there really should be more of a description here...
   * </p>
   * <!-- end-user-doc -->
	 * @see #MALFUNCTIONING_ROADSIDE_EQUIPMENT
	 * @model
	 * @generated
	 * @ordered
	 */
  public static final int MALFUNCTIONING_ROADSIDE_EQUIPMENT_VALUE = 31;

  /**
	 * An array of all the '<em><b>Cause Code</b></em>' enumerators.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 */
  private static final CauseCode[] VALUES_ARRAY =
    new CauseCode[] {
			TRAFFIC_CONGESTION,
			ACCIDENT,
			ROADWORKS,
			NARROW_LANES,
			IMPASSIBILITY,
			SLIPPERY_ROAD,
			AQUAPLANING,
			FIRE,
			HAZARDOUS_DRIVING_CONDITIONS,
			OBJECTS_ON_THE_ROAD,
			ANIMALS_ON_ROADWAY,
			PEOPLE_ON_ROADWAY,
			BROKEN_DOWN_VEHICLES,
			VEHICLE_ON_WRONG_CARRIAGEWAY,
			RESCUE_AND_RECOVERY_WORK_IN_PROGRESS,
			REGULATORY_MEASURE,
			EXTREME_WEATHER_CONDITIONS,
			VISIBILITY_REDUCED,
			PRECIPITATION,
			RECKLESS_PERSONS,
			OVER_HEIGHT_WARNING_SYSTEM_TRIGGERED,
			TRAFFIC_REGULATIONS_CHANGED,
			MAJOR_EVENT,
			SERVICE_NOT_OPERATING,
			SERVICE_NOT_USEABLE,
			SLOW_MOVING_VEHICLES,
			DANGEROUS_END_OF_QUEUE,
			RISK_OF_FIRE,
			TIME_DELAY,
			POLICE_CHECKPOINT,
			MALFUNCTIONING_ROADSIDE_EQUIPMENT,
		};

  /**
	 * A public read-only list of all the '<em><b>Cause Code</b></em>' enumerators.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 */
  public static final List<CauseCode> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));

  /**
	 * Returns the '<em><b>Cause Code</b></em>' literal with the specified literal value.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 */
  public static CauseCode get(String literal) {
		for (int i = 0; i < VALUES_ARRAY.length; ++i) {
			CauseCode result = VALUES_ARRAY[i];
			if (result.toString().equals(literal)) {
				return result;
			}
		}
		return null;
	}

  /**
	 * Returns the '<em><b>Cause Code</b></em>' literal with the specified name.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 */
  public static CauseCode getByName(String name) {
		for (int i = 0; i < VALUES_ARRAY.length; ++i) {
			CauseCode result = VALUES_ARRAY[i];
			if (result.getName().equals(name)) {
				return result;
			}
		}
		return null;
	}

  /**
	 * Returns the '<em><b>Cause Code</b></em>' literal with the specified integer value.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 */
  public static CauseCode get(int value) {
		switch (value) {
			case TRAFFIC_CONGESTION_VALUE: return TRAFFIC_CONGESTION;
			case ACCIDENT_VALUE: return ACCIDENT;
			case ROADWORKS_VALUE: return ROADWORKS;
			case NARROW_LANES_VALUE: return NARROW_LANES;
			case IMPASSIBILITY_VALUE: return IMPASSIBILITY;
			case SLIPPERY_ROAD_VALUE: return SLIPPERY_ROAD;
			case AQUAPLANING_VALUE: return AQUAPLANING;
			case FIRE_VALUE: return FIRE;
			case HAZARDOUS_DRIVING_CONDITIONS_VALUE: return HAZARDOUS_DRIVING_CONDITIONS;
			case OBJECTS_ON_THE_ROAD_VALUE: return OBJECTS_ON_THE_ROAD;
			case ANIMALS_ON_ROADWAY_VALUE: return ANIMALS_ON_ROADWAY;
			case PEOPLE_ON_ROADWAY_VALUE: return PEOPLE_ON_ROADWAY;
			case BROKEN_DOWN_VEHICLES_VALUE: return BROKEN_DOWN_VEHICLES;
			case VEHICLE_ON_WRONG_CARRIAGEWAY_VALUE: return VEHICLE_ON_WRONG_CARRIAGEWAY;
			case RESCUE_AND_RECOVERY_WORK_IN_PROGRESS_VALUE: return RESCUE_AND_RECOVERY_WORK_IN_PROGRESS;
			case REGULATORY_MEASURE_VALUE: return REGULATORY_MEASURE;
			case EXTREME_WEATHER_CONDITIONS_VALUE: return EXTREME_WEATHER_CONDITIONS;
			case VISIBILITY_REDUCED_VALUE: return VISIBILITY_REDUCED;
			case PRECIPITATION_VALUE: return PRECIPITATION;
			case RECKLESS_PERSONS_VALUE: return RECKLESS_PERSONS;
			case OVER_HEIGHT_WARNING_SYSTEM_TRIGGERED_VALUE: return OVER_HEIGHT_WARNING_SYSTEM_TRIGGERED;
			case TRAFFIC_REGULATIONS_CHANGED_VALUE: return TRAFFIC_REGULATIONS_CHANGED;
			case MAJOR_EVENT_VALUE: return MAJOR_EVENT;
			case SERVICE_NOT_OPERATING_VALUE: return SERVICE_NOT_OPERATING;
			case SERVICE_NOT_USEABLE_VALUE: return SERVICE_NOT_USEABLE;
			case SLOW_MOVING_VEHICLES_VALUE: return SLOW_MOVING_VEHICLES;
			case DANGEROUS_END_OF_QUEUE_VALUE: return DANGEROUS_END_OF_QUEUE;
			case RISK_OF_FIRE_VALUE: return RISK_OF_FIRE;
			case TIME_DELAY_VALUE: return TIME_DELAY;
			case POLICE_CHECKPOINT_VALUE: return POLICE_CHECKPOINT;
			case MALFUNCTIONING_ROADSIDE_EQUIPMENT_VALUE: return MALFUNCTIONING_ROADSIDE_EQUIPMENT;
		}
		return null;
	}

  /**
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 */
  private final int value;

  /**
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 */
  private final String name;

  /**
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 */
  private final String literal;

  /**
	 * Only this class can construct instances.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 */
  private CauseCode(int value, String name, String literal) {
		this.value = value;
		this.name = name;
		this.literal = literal;
	}

  /**
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 */
  public int getValue() {
	  return value;
	}

  /**
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 */
  public String getName() {
	  return name;
	}

  /**
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 */
  public String getLiteral() {
	  return literal;
	}

  /**
	 * Returns the literal value of the enumerator, which is its string representation.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 */
  @Override
  public String toString() {
		return literal;
	}
  
} //CauseCode