public static enum DeviceAction.Status extends Enum<DeviceAction.Status>
Status of the DeviceAction when there is a failure,
| Enum Constant and Description |
|---|
ACCEPTED |
FAILED |
UNSUPPORTED |
| Modifier and Type | Method and Description |
|---|---|
int |
get() |
static DeviceAction.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeviceAction.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeviceAction.Status ACCEPTED
public static final DeviceAction.Status FAILED
public static final DeviceAction.Status UNSUPPORTED
public static DeviceAction.Status[] values()
for (DeviceAction.Status c : DeviceAction.Status.values()) System.out.println(c);
public static DeviceAction.Status valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int get()
Copyright © 2019. All rights reserved.