public static enum PendingDevice.State extends java.lang.Enum<PendingDevice.State>
Enum Constant and Description |
---|
PREREGISTRATION
The device is currently in the pre-registration phase and the sever waits for the code.
|
REGISTERED
The device is registered.
|
REGISTRATION
The device is in the registration state.
|
UNREGISTERED
The device is currently unregistered.
|
Modifier and Type | Method and Description |
---|---|
static PendingDevice.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PendingDevice.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PendingDevice.State UNREGISTERED
public static final PendingDevice.State PREREGISTRATION
public static final PendingDevice.State REGISTRATION
public static final PendingDevice.State REGISTERED
public static PendingDevice.State[] values()
for (PendingDevice.State c : PendingDevice.State.values()) System.out.println(c);
public static PendingDevice.State 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"Copyright © 2010 - 2020 Adobe Systems Incorporated. All Rights Reserved"