public static enum BulkUpdater.Status extends java.lang.Enum<BulkUpdater.Status>
Enum Constant and Description |
---|
FAILED
Device update failed.
|
OUT_OF_RANGE
Device has gone out of range
|
PENDING_UPDATE
Device detected.
|
SCANNING
Device not detected yet.
|
SUCCEED
Device update succeeded.
|
UNKNOWN
Not able to determine current update status.
|
UPDATING
Device is being updated.
|
Modifier and Type | Method and Description |
---|---|
static BulkUpdater.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BulkUpdater.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BulkUpdater.Status UNKNOWN
public static final BulkUpdater.Status SCANNING
public static final BulkUpdater.Status PENDING_UPDATE
public static final BulkUpdater.Status UPDATING
public static final BulkUpdater.Status SUCCEED
public static final BulkUpdater.Status FAILED
public static final BulkUpdater.Status OUT_OF_RANGE
public static BulkUpdater.Status[] values()
for (BulkUpdater.Status c : BulkUpdater.Status.values()) System.out.println(c);
public static BulkUpdater.Status 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