潘志宝
2024-12-12 b095cfc785d4a280ffaae086503a6a0e4f1fa4c1
提交 | 用户 | 时间
149dd0 1 package com.iailab.netsdk.lib.enumeration;
H 2
3 import com.iailab.netsdk.lib.NetSDKLib;
4
5
6 /**
7  * 车道类型
8  * 
9  * @author : 260611
10  * @since : Created in 2021/10/19 20:21
11  */
12 public class EM_TRAFFICCAR_LANE_TYPE extends NetSDKLib.SdkStructure {
13
14     /**
15      *  未知
16      */
17     public static final int                    EM_TRAFFICCAR_LANE_TYPE_UNKNOWN = 0;
18     /**
19      *  普通车道
20      */
21     public static final int                    EM_TRAFFICCAR_LANE_TYPE_NORMAL = 1;
22     /**
23      *  非机动车车道
24      */
25     public static final int                    EM_TRAFFICCAR_LANE_TYPE_NONMOTOR = 2;
26     /**
27      *  小型车车道
28      */
29     public static final int                    EM_TRAFFICCAR_LANE_TYPE_LIGHT_DUTY = 3;
30     /**
31      *  公交车车道
32      */
33     public static final int                    EM_TRAFFICCAR_LANE_TYPE_BUS = 4;
34     /**
35      *  应急车道
36      */
37     public static final int                    EM_TRAFFICCAR_LANE_TYPE_EMERGENCY = 5;
38     /**
39      *  危险品车道
40      */
41     public static final int                    EM_TRAFFICCAR_LANE_TYPE_DANGEROUS = 6;
42     /**
43      *  潮汐车道
44      */
45     public static final int                    EM_TRAFFICCAR_LANE_TYPE_TIDAL = 7;
46 }