?? tasklisttype.java
字號:
package com.ict.netcom2.task;
public class TaskListType {
/**
* 等待隊列
*/
public static final int READY = 0x00;
/**
* 運行隊列 02 in doc1.01
*/
public static final int RUNNING = 0x01;
/**
* (預留)未用
*/
public static int INCONCLUSIVE = 0x03;
public static String getType(int taskListType) {
switch (taskListType) {
case READY:
return "READY";
case RUNNING:
return "RUNNING";
default:
return null;
}
}
public static void main(String[] str) {
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -