converIntToEnum static method
Implementation
static TencentCloudChatRobotSrcEnum converIntToEnum(int src) {
if (src == TencentCloudChatRobotSrcEnum.robotCardMessage.index) {
return TencentCloudChatRobotSrcEnum.robotCardMessage;
} else if (src == TencentCloudChatRobotSrcEnum.robotChunkMessage.index) {
return TencentCloudChatRobotSrcEnum.robotChunkMessage;
} else if (src ==
TencentCloudChatRobotSrcEnum.welcomeCardMsgSendToRobot.index) {
return TencentCloudChatRobotSrcEnum.welcomeCardMsgSendToRobot;
} else if (src ==
TencentCloudChatRobotSrcEnum.welcomeTextMsgSendToRobot.index) {
return TencentCloudChatRobotSrcEnum.welcomeTextMsgSendToRobot;
}
return TencentCloudChatRobotSrcEnum.unkonwn_0;
}