public enum UpdateState extends Enum<UpdateState>
| Enum Constant and Description |
|---|
APPLYING |
APPLYING_BACKUP |
CHECKING |
DOWNLOADED |
DOWNLOADING |
ERROR |
INITIAL |
NO_UPDATES |
POSTPONED_BACKUP |
POSTPONED_UPDATE |
READY |
UP_TO_DATE |
UPDATES_AVAILABLE |
VALIDATED_ERROR |
VALIDATING |
| Modifier and Type | Method and Description |
|---|---|
static UpdateState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UpdateState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpdateState INITIAL
public static final UpdateState ERROR
public static final UpdateState CHECKING
public static final UpdateState NO_UPDATES
public static final UpdateState UP_TO_DATE
public static final UpdateState UPDATES_AVAILABLE
public static final UpdateState DOWNLOADING
public static final UpdateState DOWNLOADED
public static final UpdateState VALIDATING
public static final UpdateState READY
public static final UpdateState VALIDATED_ERROR
public static final UpdateState APPLYING
public static final UpdateState POSTPONED_UPDATE
public static final UpdateState APPLYING_BACKUP
public static final UpdateState POSTPONED_BACKUP
public static UpdateState[] values()
for (UpdateState c : UpdateState.values()) System.out.println(c);
public static UpdateState 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 © 2025 Suncode. All rights reserved.