public enum ConnectivityStatus extends java.lang.Enum<ConnectivityStatus>
| Enum Constant and Description |
|---|
Connected
The last connection to the server was successful
|
Disconnected
The last connection attempt to the server failed
|
Unknown
Unknown connectivity, the monitor has not yet attempted to
connect to a server
|
| Modifier and Type | Method and Description |
|---|---|
static ConnectivityStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ConnectivityStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectivityStatus Unknown
public static final ConnectivityStatus Connected
public static final ConnectivityStatus Disconnected
public static ConnectivityStatus[] values()
for (ConnectivityStatus c : ConnectivityStatus.values()) System.out.println(c);
public static ConnectivityStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null