📄 status.java
字号:
package org.encog.bot.spider.workload.sql;/** * Status: This class defines the constant status values for both the * spider_host and spider_workload tables. */public final class Status { /** * The item is waiting to be processed. */ public static final String STATUS_WAITING = "W"; /** * The item was processed, but resulted in an error. */ public static final String STATUS_ERROR = "E"; /** * The item was processed successfully. */ public static final String STATUS_DONE = "D"; /** * The item is currently being processed. */ public static final String STATUS_PROCESSING = "P"; /** * This item should be ignored, only applies to hosts. */ public static final String STATUS_IGNORE = "I"; /** * Private constructor. */ private Status() { }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -