public static enum Remote.ConnectionState extends Enum<Remote.ConnectionState>
| Enum Constant and Description |
|---|
CONNECTED |
CONNECTING |
DISCONNECTED |
RECONNECTING |
REINITIALIZING |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static Remote.ConnectionState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Remote.ConnectionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Remote.ConnectionState UNKNOWN
public static final Remote.ConnectionState CONNECTING
public static final Remote.ConnectionState CONNECTED
public static final Remote.ConnectionState DISCONNECTED
public static final Remote.ConnectionState RECONNECTING
public static final Remote.ConnectionState REINITIALIZING
public static Remote.ConnectionState[] values()
for (Remote.ConnectionState c : Remote.ConnectionState.values()) System.out.println(c);
public static Remote.ConnectionState 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 © 2015–2018 openbase.org. All rights reserved.