Last active
December 22, 2015 06:38
-
-
Save nuysoft/6432067 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.nuysoft.util; | |
public enum State { | |
// 环境 | |
RUN, // 生产环境 | |
DEBUG, // 测试环境 | |
// 状态 | |
NEW, // 新建 | |
READY, // 初始化 | |
RUNNING, // 正在运行 | |
WAITING, // 没有任务 | |
STOP, // 停止 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment