The Encog Project

org.encog.bot.spider.workload.sql
Class Status

java.lang.Object
  extended by org.encog.bot.spider.workload.sql.Status

public final class Status
extends java.lang.Object

Status: This class defines the constant status values for both the spider_host and spider_workload tables.


Field Summary
static java.lang.String STATUS_DONE
          The item was processed successfully.
static java.lang.String STATUS_ERROR
          The item was processed, but resulted in an error.
static java.lang.String STATUS_IGNORE
          This item should be ignored, only applies to hosts.
static java.lang.String STATUS_PROCESSING
          The item is currently being processed.
static java.lang.String STATUS_WAITING
          The item is waiting to be processed.
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

STATUS_WAITING

public static final java.lang.String STATUS_WAITING
The item is waiting to be processed.

See Also:
Constant Field Values

STATUS_ERROR

public static final java.lang.String STATUS_ERROR
The item was processed, but resulted in an error.

See Also:
Constant Field Values

STATUS_DONE

public static final java.lang.String STATUS_DONE
The item was processed successfully.

See Also:
Constant Field Values

STATUS_PROCESSING

public static final java.lang.String STATUS_PROCESSING
The item is currently being processed.

See Also:
Constant Field Values

STATUS_IGNORE

public static final java.lang.String STATUS_IGNORE
This item should be ignored, only applies to hosts.

See Also:
Constant Field Values

The Encog Project