public enum Subsystem extends Enum<Subsystem>
| Enum Constant and Description |
|---|
EFI_APPLICATION
An Extensible Firmware Interface (EFI) application
|
EFI_BOOT_SERVICE_DRIVER
An EFI driver with boot services
|
EFI_ROM
An EFI ROM image
|
EFI_RUNTIME_DRIVER
An EFI driver with run-time services
|
NATIVE
Device drivers and native Windows processes
|
POSIX_CUI
The Posix character subsystem
|
UNKNOWN
An unknown subsystem
|
WINDOWS_CE_GUI
Windows CE
|
WINDOWS_CUI
The Windows character subsystem
|
WINDOWS_GUI
The Windows graphical user interface (GUI) subsystem
|
XBOX
XBOX
|
| Modifier and Type | Method and Description |
|---|---|
static Subsystem |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Subsystem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Subsystem EFI_APPLICATION
public static final Subsystem EFI_BOOT_SERVICE_DRIVER
public static final Subsystem EFI_RUNTIME_DRIVER
public static final Subsystem WINDOWS_CE_GUI
public static final Subsystem WINDOWS_CUI
public static final Subsystem WINDOWS_GUI
public static Subsystem 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 nullpublic static Subsystem[] values()
for (Subsystem c : Subsystem.values()) System.out.println(c);
Copyright © 2012–2020. All rights reserved.