public enum AddDeviceState extends java.lang.Enum<AddDeviceState>
Enum Constant and Description |
---|
AddStatePrechecking
入参状态检查
|
AddStateProvisioning
进入配网状态
|
AddStateProvisionOver
配网结束
|
AddStateProvisionPreparing
真正配网前的准备阶段,如等待用户输入 ssid + pwd。
|
Modifier and Type | Method and Description |
---|---|
static AddDeviceState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AddDeviceState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AddDeviceState AddStatePrechecking
public static final AddDeviceState AddStateProvisionPreparing
public static final AddDeviceState AddStateProvisioning
public static final AddDeviceState AddStateProvisionOver
public static AddDeviceState[] values()
for (AddDeviceState c : AddDeviceState.values()) System.out.println(c);
public static AddDeviceState 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 null