Package ghidra.app.util.bin.format.pe
Enum PeSubsystem
- java.lang.Object
-
- java.lang.Enum<PeSubsystem>
-
- ghidra.app.util.bin.format.pe.PeSubsystem
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PeSubsystem>
public enum PeSubsystem extends java.lang.Enum<PeSubsystem>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getAlias()
java.lang.String
getDescription()
int
getValue()
static PeSubsystem
parse(int id)
static PeSubsystem
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PeSubsystem[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IMAGE_SUBSYSTEM_UNKNOWN
public static final PeSubsystem IMAGE_SUBSYSTEM_UNKNOWN
-
IMAGE_SUBSYSTEM_NATIVE
public static final PeSubsystem IMAGE_SUBSYSTEM_NATIVE
-
IMAGE_SUBSYSTEM_WINDOWS_GUI
public static final PeSubsystem IMAGE_SUBSYSTEM_WINDOWS_GUI
-
IMAGE_SUBSYSTEM_WINDOWS_CUI
public static final PeSubsystem IMAGE_SUBSYSTEM_WINDOWS_CUI
-
IMAGE_SUBSYSTEM_OS2_CUI
public static final PeSubsystem IMAGE_SUBSYSTEM_OS2_CUI
-
IMAGE_SUBSYSTEM_POSIX_CUI
public static final PeSubsystem IMAGE_SUBSYSTEM_POSIX_CUI
-
IMAGE_SUBSYSTEM_NATIVE_WINDOWS
public static final PeSubsystem IMAGE_SUBSYSTEM_NATIVE_WINDOWS
-
IMAGE_SUBSYSTEM_WINDOWS_CE_GUI
public static final PeSubsystem IMAGE_SUBSYSTEM_WINDOWS_CE_GUI
-
IMAGE_SUBSYSTEM_EFI_APPLICATION
public static final PeSubsystem IMAGE_SUBSYSTEM_EFI_APPLICATION
-
IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER
public static final PeSubsystem IMAGE_SUBSYSTEM_EFI_BOOT_SERVICE_DRIVER
-
IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER
public static final PeSubsystem IMAGE_SUBSYSTEM_EFI_RUNTIME_DRIVER
-
IMAGE_SUBSYSTEM_EFI_ROM
public static final PeSubsystem IMAGE_SUBSYSTEM_EFI_ROM
-
IMAGE_SUBSYSTEM_XBOX
public static final PeSubsystem IMAGE_SUBSYSTEM_XBOX
-
IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION
public static final PeSubsystem IMAGE_SUBSYSTEM_WINDOWS_BOOT_APPLICATION
-
-
Method Detail
-
values
public static PeSubsystem[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PeSubsystem c : PeSubsystem.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PeSubsystem valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getAlias
public java.lang.String getAlias()
-
getValue
public int getValue()
-
getDescription
public java.lang.String getDescription()
-
parse
public static PeSubsystem parse(int id)
-
-