public static enum DeviceManager.DeviceStatus extends java.lang.Enum<DeviceManager.DeviceStatus>
| Enum Constant and Description |
|---|
CHANGED
A device exists with the given name and manufacturer, but has a different configuration
|
EXISTS
The device exists unchanged from the given configuration
|
MISSING
There is no device with the given name and manufacturer
|
| Modifier and Type | Method and Description |
|---|---|
static DeviceManager.DeviceStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeviceManager.DeviceStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeviceManager.DeviceStatus EXISTS
public static final DeviceManager.DeviceStatus CHANGED
public static final DeviceManager.DeviceStatus MISSING
public static DeviceManager.DeviceStatus[] values()
for (DeviceManager.DeviceStatus c : DeviceManager.DeviceStatus.values()) System.out.println(c);
public static DeviceManager.DeviceStatus 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