
public enum UAPPPartStatus extends Enum<UAPPPartStatus>
| Enum Constant and Description |
|---|
PART_INSTALLED
It means that the part has been installed SUCCESFULLY
|
PART_MISSING_NEEDED_FILES
It means that the part installation FAILED because missing file need for
the container for installing the parts
|
PART_NOT_INSTALLED
It means that the part installation FAILED somehow
|
PART_NOT_UNINSTALLED
It means that the part UNinstallation FAILED somehow
|
PART_PENDING
Deprecated.
|
PART_UNINSTALLED
It means that the part has been UNinstalled SUCCESFULLY
|
| Modifier and Type | Method and Description |
|---|---|
static UAPPPartStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UAPPPartStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UAPPPartStatus PART_INSTALLED
public static final UAPPPartStatus PART_NOT_INSTALLED
public static final UAPPPartStatus PART_PENDING
public static final UAPPPartStatus PART_UNINSTALLED
public static final UAPPPartStatus PART_NOT_UNINSTALLED
public static final UAPPPartStatus PART_MISSING_NEEDED_FILES
public static UAPPPartStatus[] values()
for (UAPPPartStatus c : UAPPPartStatus.values()) System.out.println(c);
public static UAPPPartStatus 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 nullCopyright © 2018 universAAL Consortium. All rights reserved.