public enum EndpointConnectedStatus extends Enum<EndpointConnectedStatus>
Enum Constant and Description |
---|
DONGLE_ONLY |
DUAL |
NONE_CONNECTED |
NOT_INITIALIZED |
WFM_ONLY |
Modifier and Type | Method and Description |
---|---|
static EndpointConnectedStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EndpointConnectedStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EndpointConnectedStatus NOT_INITIALIZED
public static final EndpointConnectedStatus NONE_CONNECTED
public static final EndpointConnectedStatus WFM_ONLY
public static final EndpointConnectedStatus DONGLE_ONLY
public static final EndpointConnectedStatus DUAL
public static EndpointConnectedStatus[] values()
for (EndpointConnectedStatus c : EndpointConnectedStatus.values()) System.out.println(c);
public static EndpointConnectedStatus 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 null