public enum AutoReconnectState extends Enum<AutoReconnectState>
| Enum Constant and Description |
|---|
CONNECTED
Auto reconnect is enabled and the connection is established.
|
CONNECTING
Auto reconnect is enabled, the connection is not established but the controller
currently tries to establish the connection.
|
DISABLED
Auto reconnect is disabled.
|
DISCONNECTED
Auto reconnect is enabled, but the connection is currently not established.
|
WAITING
Auto reconnect is enabled, the connection is not established and the controller
is currently waiting the delay until it will reconnect.
|
| Modifier and Type | Method and Description |
|---|---|
static AutoReconnectState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AutoReconnectState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutoReconnectState DISABLED
public static final AutoReconnectState DISCONNECTED
public static final AutoReconnectState WAITING
public static final AutoReconnectState CONNECTING
public static final AutoReconnectState CONNECTED
public static AutoReconnectState[] values()
for (AutoReconnectState c : AutoReconnectState.values()) System.out.println(c);
public static AutoReconnectState 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 © 2017 LSST. All rights reserved.