Package ghidra.app.util.bin.format.pef
Enum Class SectionKind
- All Implemented Interfaces:
Serializable
,Comparable<SectionKind>
,Constable
Values for the sectionKind field.
Section kind values for instantiated sections.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionCode, presumed pure and position independent.Read-only data.Reserved for future use.Reserved for future use.Intermixed code and writeable data.Loader tables.Packed writeable data.Reserved for future use.Unpacked writeable data. -
Method Summary
Modifier and TypeMethodDescriptionstatic SectionKind
get
(int value) int
getValue()
boolean
static SectionKind
Returns the enum constant of this class with the specified name.static SectionKind[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Code
Code, presumed pure and position independent. -
UnpackedData
Unpacked writeable data. -
PackedData
Packed writeable data. -
Constant
Read-only data. -
Loader
Loader tables. -
Debug
Reserved for future use. -
ExecutableData
Intermixed code and writeable data. -
Exception
Reserved for future use. -
Traceback
Reserved for future use.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
public int getValue() -
isInstantiated
public boolean isInstantiated() -
get
-