[3.4.0]增加V2X消息埋点统计

This commit is contained in:
xuxinchao
2023-07-24 21:00:48 +08:00
parent 5000a87d2e
commit 2ce531235c
16 changed files with 207 additions and 25 deletions

View File

@@ -0,0 +1,25 @@
package com.mogo.eagle.core.data.enums
/**
* V2X消息通信类型
*/
enum class CommunicationType(name: String) {
V2V("V2V"),//车与车通信
V2N("V2N"),//车与运营商网络通讯
V2I("V2I"),//车与路标基础设施通信
V2P("V2P"),//车与人通信
V2X("V2X");//即车队外界所有信息的交换
// companion object{
// fun getName(type: CommunicationType): String{
// return when(type){
// V2V -> "V2V"
// V2N -> "V2N"
// V2I -> "V2I"
// V2P -> "V2P"
// V2X -> "V2X"
// }
// }
// }
}