public enum WindowsUpdateType extends java.lang.Enum<WindowsUpdateType>
| Enum Constant and Description |
|---|
ALL
all
|
BUSINESS_READY_ONLY
business Ready Only
|
UNEXPECTED_VALUE
For WindowsUpdateType values that were not expected from the service
|
USER_DEFINED
user Defined
|
WINDOWS_INSIDER_BUILD_FAST
windows Insider Build Fast
|
WINDOWS_INSIDER_BUILD_RELEASE
windows Insider Build Release
|
WINDOWS_INSIDER_BUILD_SLOW
windows Insider Build Slow
|
| Modifier and Type | Method and Description |
|---|---|
static WindowsUpdateType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WindowsUpdateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WindowsUpdateType USER_DEFINED
public static final WindowsUpdateType ALL
public static final WindowsUpdateType BUSINESS_READY_ONLY
public static final WindowsUpdateType WINDOWS_INSIDER_BUILD_FAST
public static final WindowsUpdateType WINDOWS_INSIDER_BUILD_SLOW
public static final WindowsUpdateType WINDOWS_INSIDER_BUILD_RELEASE
public static final WindowsUpdateType UNEXPECTED_VALUE
public static WindowsUpdateType[] values()
for (WindowsUpdateType c : WindowsUpdateType.values()) System.out.println(c);
public static WindowsUpdateType 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