public enum HubFaultStatus extends java.lang.Enum<HubFaultStatus>
AntennaHubStatus.getFault()| Enum Constant and Description |
|---|
Disconnected
The antenna hub is disconnected.
|
No_Fault
No known antenna hub fault exists.
|
No_Init
The hub has not yet been initialized.
|
RF_Power
A non-specific RF power distribution error has occurred.
|
RF_Power_On_Hub_1
An RF power distribution error has occurred; RF power is present on Hub 1.
|
RF_Power_On_Hub_2
An RF power distribution error has occurred; RF power is present on Hub 2.
|
RF_Power_On_Hub_3
An RF power distribution error has occurred; RF power is present on Hub 3.
|
RF_Power_On_Hub_4
An RF power distribution error has occurred; RF power is present on Hub 4.
|
Serial_Overflow
A serial communications error has occurred between the reader and
the hub controller.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static HubFaultStatus |
valueOf(int hubFaultStatusValue) |
static HubFaultStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HubFaultStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HubFaultStatus No_Fault
public static final HubFaultStatus RF_Power
public static final HubFaultStatus RF_Power_On_Hub_1
public static final HubFaultStatus RF_Power_On_Hub_2
public static final HubFaultStatus RF_Power_On_Hub_3
public static final HubFaultStatus RF_Power_On_Hub_4
public static final HubFaultStatus No_Init
public static final HubFaultStatus Serial_Overflow
public static final HubFaultStatus Disconnected
public static HubFaultStatus[] values()
for (HubFaultStatus c : HubFaultStatus.values()) System.out.println(c);
public static HubFaultStatus 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 HubFaultStatus valueOf(int hubFaultStatusValue)
hubFaultStatusValue - the integer value of the fault statuspublic int getValue()