Enum OTACallbacks.Error
- java.lang.Object
-
- java.lang.Enum<OTACallbacks.Error>
-
- com.zentri.zentri_ble.OTACallbacks.Error
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<OTACallbacks.Error>
- Enclosing interface:
- OTACallbacks
public static enum OTACallbacks.Error extends java.lang.Enum<OTACallbacks.Error>
Enum Constant Summary
Enum Constant and Description |
---|
COMMUNICATION_ERROR |
CONNECTION_LOST |
SET_CONTROL_NOTIFY_FAIL |
Method Summary
Modifier and Type | Method and Description |
---|---|
static OTACallbacks.Error |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OTACallbacks.Error[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Enum Constant Detail
-
COMMUNICATION_ERROR
public static final OTACallbacks.Error COMMUNICATION_ERROR
-
SET_CONTROL_NOTIFY_FAIL
public static final OTACallbacks.Error SET_CONTROL_NOTIFY_FAIL
-
CONNECTION_LOST
public static final OTACallbacks.Error CONNECTION_LOST
Method Detail
-
values
public static OTACallbacks.Error[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (OTACallbacks.Error c : OTACallbacks.Error.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OTACallbacks.Error valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null