Skip to content

Instantly share code, notes, and snippets.

@nuysoft
Last active December 22, 2015 06:38
Show Gist options
  • Save nuysoft/6432067 to your computer and use it in GitHub Desktop.
Save nuysoft/6432067 to your computer and use it in GitHub Desktop.
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