public enum WindowsStartMenuModeType extends java.lang.Enum<WindowsStartMenuModeType>
| Enum Constant and Description |
|---|
FULL_SCREEN
full Screen
|
NON_FULL_SCREEN
non Full Screen
|
UNEXPECTED_VALUE
For WindowsStartMenuModeType values that were not expected from the service
|
USER_DEFINED
user Defined
|
| Modifier and Type | Method and Description |
|---|---|
static WindowsStartMenuModeType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WindowsStartMenuModeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WindowsStartMenuModeType USER_DEFINED
public static final WindowsStartMenuModeType FULL_SCREEN
public static final WindowsStartMenuModeType NON_FULL_SCREEN
public static final WindowsStartMenuModeType UNEXPECTED_VALUE
public static WindowsStartMenuModeType[] values()
for (WindowsStartMenuModeType c : WindowsStartMenuModeType.values()) System.out.println(c);
public static WindowsStartMenuModeType 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