hxb
2024-02-23 a6c0ac0f20d1d91fbe1fe591a6a9ca46f82399f5
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
package com.hdl.linkpm.sdk.project.type;
 
import androidx.annotation.StringDef;
 
import java.lang.annotation.Retention;
 
import static java.lang.annotation.RetentionPolicy.SOURCE;
 
/**
 * Created by jlchen on 12/9/21.
 * 调试状态类型 字符串
 */
@Retention(SOURCE)
@StringDef({DebugStatusType.To_Be_Debugged, DebugStatusType.Debugging, DebugStatusType.WAIT_DELIVERED, DebugStatusType.Delivered, DebugStatusType.INITIAL_TATE})
public @interface DebugStatusType {
    //0:待调试
    String To_Be_Debugged = "To_Be_Debugged";
    //1:调试中
    String Debugging = "Debugging";
    //3:待交付
    String WAIT_DELIVERED = "WAIT_DELIVERED";
    //4:已交付
    String Delivered = "Delivered";
    //5:初始态
    String INITIAL_TATE = "INITIAL_TATE";
}