public final class State
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static State |
FROZEN
For use when an Object has stopped processing momentarily, but
may be resumed.
|
static State |
RUNNING
For use when an Object is running normally.
|
static State |
SLEEPING
For use when the processing is sleeping, or waiting for more
input.
|
static State |
STARTING
For use when an Object is in the process of starting up.
|
static State |
STOPPED
For use when an Object has stopped processing completely,
and has released all resources.
|
static State |
STOPPING
For use when an Object is in the process of stopping.
|
static State |
UNKNOWN
For use when an Object is in an unknown state of processing.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString()
Returns the String version of the State Object.
|
public static final State STARTING
public static final State STOPPING
public static final State RUNNING
public static final State STOPPED
public static final State SLEEPING
public static final State FROZEN
public static final State UNKNOWN