summaryrefslogtreecommitdiff
path: root/test/traffic-incidents-service/feed/org.genivi.trafficinfo.tpeg.tec.event-model/src/org/genivi/trafficinfo/tpeg/tec/event/RestrictionType.java
blob: eec0fd73c239c7c381c916f60234453a27efc119 (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
/**
 * 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.trafficinfo.tpeg.tec.event;

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>Restriction Type</b></em>',
 * and utility methods for working with them.
 * <!-- end-user-doc -->
 * @see org.genivi.trafficinfo.tpeg.tec.event.EventPackage#getRestrictionType()
 * @model
 * @generated
 */
public enum RestrictionType implements Enumerator {
  /**
	 * The '<em><b>WIDTH LESS THAN</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #WIDTH_LESS_THAN_VALUE
	 * @generated
	 * @ordered
	 */
  WIDTH_LESS_THAN(1, "WIDTH_LESS_THAN", "WIDTH_LESS_THAN"),

  /**
	 * The '<em><b>WIDTH GREATER THAN</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #WIDTH_GREATER_THAN_VALUE
	 * @generated
	 * @ordered
	 */
  WIDTH_GREATER_THAN(2, "WIDTH_GREATER_THAN", "WIDTH_GREATER_THAN"),

  /**
	 * The '<em><b>HEIGTH LESS THAN</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #HEIGTH_LESS_THAN_VALUE
	 * @generated
	 * @ordered
	 */
  HEIGTH_LESS_THAN(3, "HEIGTH_LESS_THAN", "HEIGTH_LESS_THAN"),

  /**
	 * The '<em><b>HEIGTH GREATER THAN</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #HEIGTH_GREATER_THAN_VALUE
	 * @generated
	 * @ordered
	 */
  HEIGTH_GREATER_THAN(4, "HEIGTH_GREATER_THAN", "HEIGTH_GREATER_THAN"),

  /**
	 * The '<em><b>WEIGHT LESS THAN</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #WEIGHT_LESS_THAN_VALUE
	 * @generated
	 * @ordered
	 */
  WEIGHT_LESS_THAN(5, "WEIGHT_LESS_THAN", "WEIGHT_LESS_THAN"),

  /**
	 * The '<em><b>WEIGHT GREATER THAN</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #WEIGHT_GREATER_THAN_VALUE
	 * @generated
	 * @ordered
	 */
  WEIGHT_GREATER_THAN(6, "WEIGHT_GREATER_THAN", "WEIGHT_GREATER_THAN"),

  /**
	 * The '<em><b>WITHOUT WINTER TYRE</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #WITHOUT_WINTER_TYRE_VALUE
	 * @generated
	 * @ordered
	 */
  WITHOUT_WINTER_TYRE(7, "WITHOUT_WINTER_TYRE", "WITHOUT_WINTER_TYRE"),

  /**
	 * The '<em><b>WITHOUT SNOW CHAIN</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #WITHOUT_SNOW_CHAIN_VALUE
	 * @generated
	 * @ordered
	 */
  WITHOUT_SNOW_CHAIN(8, "WITHOUT_SNOW_CHAIN", "WITHOUT_SNOW_CHAIN"),

  /**
	 * The '<em><b>WITH TRAILER</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #WITH_TRAILER_VALUE
	 * @generated
	 * @ordered
	 */
  WITH_TRAILER(9, "WITH_TRAILER", "WITH_TRAILER"),

  /**
	 * The '<em><b>WITH CARAVAN</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #WITH_CARAVAN_VALUE
	 * @generated
	 * @ordered
	 */
  WITH_CARAVAN(10, "WITH_CARAVAN", "WITH_CARAVAN"),

  /**
	 * The '<em><b>PERSONS IN VEHICLE LESS THAN</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #PERSONS_IN_VEHICLE_LESS_THAN_VALUE
	 * @generated
	 * @ordered
	 */
  PERSONS_IN_VEHICLE_LESS_THAN(11, "PERSONS_IN_VEHICLE_LESS_THAN", "PERSONS_IN_VEHICLE_LESS_THAN"),

  /**
	 * The '<em><b>PERSONS IN VEHICLE MORE THAN</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #PERSONS_IN_VEHICLE_MORE_THAN_VALUE
	 * @generated
	 * @ordered
	 */
  PERSONS_IN_VEHICLE_MORE_THAN(12, "PERSONS_IN_VEHICLE_MORE_THAN", "PERSONS_IN_VEHICLE_MORE_THAN"),

  /**
	 * The '<em><b>EVEN NUMBER PLATE</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #EVEN_NUMBER_PLATE_VALUE
	 * @generated
	 * @ordered
	 */
  EVEN_NUMBER_PLATE(13, "EVEN_NUMBER_PLATE", "EVEN_NUMBER_PLATE"),

  /**
	 * The '<em><b>ODD NUMBER PLATE</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #ODD_NUMBER_PLATE_VALUE
	 * @generated
	 * @ordered
	 */
  ODD_NUMBER_PLATE(14, "ODD_NUMBER_PLATE", "ODD_NUMBER_PLATE"),

  /**
	 * The '<em><b>LENGTH LESS THAN</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #LENGTH_LESS_THAN_VALUE
	 * @generated
	 * @ordered
	 */
  LENGTH_LESS_THAN(15, "LENGTH_LESS_THAN", "LENGTH_LESS_THAN"),

  /**
	 * The '<em><b>LENGTH GREATER THAN</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #LENGTH_GREATER_THAN_VALUE
	 * @generated
	 * @ordered
	 */
  LENGTH_GREATER_THAN(16, "LENGTH_GREATER_THAN", "LENGTH_GREATER_THAN"),

  /**
	 * The '<em><b>AXLE LOAD LESS THAN</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #AXLE_LOAD_LESS_THAN_VALUE
	 * @generated
	 * @ordered
	 */
  AXLE_LOAD_LESS_THAN(17, "AXLE_LOAD_LESS_THAN", "AXLE_LOAD_LESS_THAN"),

  /**
	 * The '<em><b>AXLE LOAD GREATER THAN</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #AXLE_LOAD_GREATER_THAN_VALUE
	 * @generated
	 * @ordered
	 */
  AXLE_LOAD_GREATER_THAN(18, "AXLE_LOAD_GREATER_THAN", "AXLE_LOAD_GREATER_THAN"),

  /**
	 * The '<em><b>VEHICLE FULFILLS EMMISSION STANDARD EURO3</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO3_VALUE
	 * @generated
	 * @ordered
	 */
  VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO3(19, "VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO3", "VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO3"),

  /**
	 * The '<em><b>VEHICLE FULFILLS EMMISSION STANDARD EURO3D4</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO3D4_VALUE
	 * @generated
	 * @ordered
	 */
  VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO3D4(20, "VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO3D4", "VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO3D4"),

  /**
	 * The '<em><b>VEHICLE FULFILLS EMMISSION STANDARD EURO4</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO4_VALUE
	 * @generated
	 * @ordered
	 */
  VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO4(21, "VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO4", "VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO4"),

  /**
	 * The '<em><b>VEHICLE FULFILLS EMMISSION STANDARD EURO5</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO5_VALUE
	 * @generated
	 * @ordered
	 */
  VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO5(22, "VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO5", "VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO5"),

  /**
	 * The '<em><b>WITH PETROL ENGINE</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #WITH_PETROL_ENGINE_VALUE
	 * @generated
	 * @ordered
	 */
  WITH_PETROL_ENGINE(23, "WITH_PETROL_ENGINE", "WITH_PETROL_ENGINE"),

  /**
	 * The '<em><b>WITH LPG ENGINE</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #WITH_LPG_ENGINE_VALUE
	 * @generated
	 * @ordered
	 */
  WITH_LPG_ENGINE(25, "WITH_LPG_ENGINE", "WITH_LPG_ENGINE"),

  /**
	 * The '<em><b>WITH DIESEL ENGINE</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #WITH_DIESEL_ENGINE_VALUE
	 * @generated
	 * @ordered
	 */
  WITH_DIESEL_ENGINE(24, "WITH_DIESEL_ENGINE", "WITH_DIESEL_ENGINE"),

  /**
	 * The '<em><b>THROUGH TRAFFIC</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #THROUGH_TRAFFIC_VALUE
	 * @generated
	 * @ordered
	 */
  THROUGH_TRAFFIC(26, "THROUGH_TRAFFIC", "THROUGH_TRAFFIC"),

  /**
	 * The '<em><b>RESIDENTS TRAFFIC</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #RESIDENTS_TRAFFIC_VALUE
	 * @generated
	 * @ordered
	 */
  RESIDENTS_TRAFFIC(27, "RESIDENTS_TRAFFIC", "RESIDENTS_TRAFFIC"),

  /**
	 * The '<em><b>WITH DESTINATION IN GIVEN AREA</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #WITH_DESTINATION_IN_GIVEN_AREA_VALUE
	 * @generated
	 * @ordered
	 */
  WITH_DESTINATION_IN_GIVEN_AREA(28, "WITH_DESTINATION_IN_GIVEN_AREA", "WITH_DESTINATION_IN_GIVEN_AREA"),

  /**
	 * The '<em><b>UNDECODABLE RESTRICTION</b></em>' literal object.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @see #UNDECODABLE_RESTRICTION_VALUE
	 * @generated
	 * @ordered
	 */
  UNDECODABLE_RESTRICTION(255, "UNDECODABLE_RESTRICTION", "UNDECODABLE_RESTRICTION");

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
	 * An array of all the '<em><b>Restriction Type</b></em>' enumerators.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 */
  private static final RestrictionType[] VALUES_ARRAY =
    new RestrictionType[] {
			WIDTH_LESS_THAN,
			WIDTH_GREATER_THAN,
			HEIGTH_LESS_THAN,
			HEIGTH_GREATER_THAN,
			WEIGHT_LESS_THAN,
			WEIGHT_GREATER_THAN,
			WITHOUT_WINTER_TYRE,
			WITHOUT_SNOW_CHAIN,
			WITH_TRAILER,
			WITH_CARAVAN,
			PERSONS_IN_VEHICLE_LESS_THAN,
			PERSONS_IN_VEHICLE_MORE_THAN,
			EVEN_NUMBER_PLATE,
			ODD_NUMBER_PLATE,
			LENGTH_LESS_THAN,
			LENGTH_GREATER_THAN,
			AXLE_LOAD_LESS_THAN,
			AXLE_LOAD_GREATER_THAN,
			VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO3,
			VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO3D4,
			VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO4,
			VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO5,
			WITH_PETROL_ENGINE,
			WITH_LPG_ENGINE,
			WITH_DIESEL_ENGINE,
			THROUGH_TRAFFIC,
			RESIDENTS_TRAFFIC,
			WITH_DESTINATION_IN_GIVEN_AREA,
			UNDECODABLE_RESTRICTION,
		};

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

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

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

  /**
	 * Returns the '<em><b>Restriction Type</b></em>' literal with the specified integer value.
	 * <!-- begin-user-doc -->
   * <!-- end-user-doc -->
	 * @generated
	 */
  public static RestrictionType get(int value) {
		switch (value) {
			case WIDTH_LESS_THAN_VALUE: return WIDTH_LESS_THAN;
			case WIDTH_GREATER_THAN_VALUE: return WIDTH_GREATER_THAN;
			case HEIGTH_LESS_THAN_VALUE: return HEIGTH_LESS_THAN;
			case HEIGTH_GREATER_THAN_VALUE: return HEIGTH_GREATER_THAN;
			case WEIGHT_LESS_THAN_VALUE: return WEIGHT_LESS_THAN;
			case WEIGHT_GREATER_THAN_VALUE: return WEIGHT_GREATER_THAN;
			case WITHOUT_WINTER_TYRE_VALUE: return WITHOUT_WINTER_TYRE;
			case WITHOUT_SNOW_CHAIN_VALUE: return WITHOUT_SNOW_CHAIN;
			case WITH_TRAILER_VALUE: return WITH_TRAILER;
			case WITH_CARAVAN_VALUE: return WITH_CARAVAN;
			case PERSONS_IN_VEHICLE_LESS_THAN_VALUE: return PERSONS_IN_VEHICLE_LESS_THAN;
			case PERSONS_IN_VEHICLE_MORE_THAN_VALUE: return PERSONS_IN_VEHICLE_MORE_THAN;
			case EVEN_NUMBER_PLATE_VALUE: return EVEN_NUMBER_PLATE;
			case ODD_NUMBER_PLATE_VALUE: return ODD_NUMBER_PLATE;
			case LENGTH_LESS_THAN_VALUE: return LENGTH_LESS_THAN;
			case LENGTH_GREATER_THAN_VALUE: return LENGTH_GREATER_THAN;
			case AXLE_LOAD_LESS_THAN_VALUE: return AXLE_LOAD_LESS_THAN;
			case AXLE_LOAD_GREATER_THAN_VALUE: return AXLE_LOAD_GREATER_THAN;
			case VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO3_VALUE: return VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO3;
			case VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO3D4_VALUE: return VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO3D4;
			case VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO4_VALUE: return VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO4;
			case VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO5_VALUE: return VEHICLE_FULFILLS_EMMISSION_STANDARD_EURO5;
			case WITH_PETROL_ENGINE_VALUE: return WITH_PETROL_ENGINE;
			case WITH_LPG_ENGINE_VALUE: return WITH_LPG_ENGINE;
			case WITH_DIESEL_ENGINE_VALUE: return WITH_DIESEL_ENGINE;
			case THROUGH_TRAFFIC_VALUE: return THROUGH_TRAFFIC;
			case RESIDENTS_TRAFFIC_VALUE: return RESIDENTS_TRAFFIC;
			case WITH_DESTINATION_IN_GIVEN_AREA_VALUE: return WITH_DESTINATION_IN_GIVEN_AREA;
			case UNDECODABLE_RESTRICTION_VALUE: return UNDECODABLE_RESTRICTION;
		}
		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 RestrictionType(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;
	}
  
} //RestrictionType