status.java

来自「VHDL制作的ann的code」· Java 代码 · 共 39 行

JAVA
39
字号
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 + =
减小字号Ctrl + -
显示快捷键?