public enum AutomaticUpdateMode extends java.lang.Enum<AutomaticUpdateMode>
| Enum Constant and Description |
|---|
AUTO_INSTALL_AND_REBOOT_AT_MAINTENANCE_TIME
auto Install And Reboot At Maintenance Time
|
AUTO_INSTALL_AND_REBOOT_AT_SCHEDULED_TIME
auto Install And Reboot At Scheduled Time
|
AUTO_INSTALL_AND_REBOOT_WITHOUT_END_USER_CONTROL
auto Install And Reboot Without End User Control
|
AUTO_INSTALL_AT_MAINTENANCE_TIME
auto Install At Maintenance Time
|
NOTIFY_DOWNLOAD
notify Download
|
UNEXPECTED_VALUE
For AutomaticUpdateMode values that were not expected from the service
|
USER_DEFINED
user Defined
|
| Modifier and Type | Method and Description |
|---|---|
static AutomaticUpdateMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AutomaticUpdateMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AutomaticUpdateMode USER_DEFINED
public static final AutomaticUpdateMode NOTIFY_DOWNLOAD
public static final AutomaticUpdateMode AUTO_INSTALL_AT_MAINTENANCE_TIME
public static final AutomaticUpdateMode AUTO_INSTALL_AND_REBOOT_AT_MAINTENANCE_TIME
public static final AutomaticUpdateMode AUTO_INSTALL_AND_REBOOT_AT_SCHEDULED_TIME
public static final AutomaticUpdateMode AUTO_INSTALL_AND_REBOOT_WITHOUT_END_USER_CONTROL
public static final AutomaticUpdateMode UNEXPECTED_VALUE
public static AutomaticUpdateMode[] values()
for (AutomaticUpdateMode c : AutomaticUpdateMode.values()) System.out.println(c);
public static AutomaticUpdateMode 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