public enum JPPFClientConnectionStatus extends Enum<JPPFClientConnectionStatus>
| Enum Constant and Description |
|---|
ACTIVE
The client is successfully connected to the driver.
|
CONNECTING
The client is currently attempting to connect to the driver.
|
CREATED
The connection was just created.
|
DISCONNECTED
The client was disconnected from the driver.
|
EXECUTING
The connection is currently executing a job.
|
FAILED
The client failed to connect to the driver and no further attempt will be made.
|
NEW
The connection was just created.
|
| Modifier and Type | Method and Description |
|---|---|
static JPPFClientConnectionStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JPPFClientConnectionStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JPPFClientConnectionStatus CREATED
public static final JPPFClientConnectionStatus NEW
public static final JPPFClientConnectionStatus DISCONNECTED
public static final JPPFClientConnectionStatus CONNECTING
public static final JPPFClientConnectionStatus ACTIVE
public static final JPPFClientConnectionStatus EXECUTING
public static final JPPFClientConnectionStatus FAILED
public static JPPFClientConnectionStatus[] values()
for (JPPFClientConnectionStatus c : JPPFClientConnectionStatus.values()) System.out.println(c);
public static JPPFClientConnectionStatus valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2005-2012 JPPF Team.