public enum HubConnectedStatus extends java.lang.Enum<HubConnectedStatus>
| Enum Constant and Description |
|---|
Connected
The antenna hub is connected.
|
Disconnected
The antenna hub is disconnected.
|
Unknown
The antenna hub is in an unknown state.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static HubConnectedStatus |
valueOf(int hubConnectedStatusValue) |
static HubConnectedStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HubConnectedStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HubConnectedStatus Unknown
public static final HubConnectedStatus Disconnected
public static final HubConnectedStatus Connected
public static HubConnectedStatus[] values()
for (HubConnectedStatus c : HubConnectedStatus.values()) System.out.println(c);
public static HubConnectedStatus 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 nullpublic static HubConnectedStatus valueOf(int hubConnectedStatusValue)
hubConnectedStatusValue - the integer value of the connectedStatuspublic int getValue()