Package ghidra.app.util.bin.format.pef
Enum Class PackedDataOpcodes
- All Implemented Interfaces:
Serializable
,Comparable<PackedDataOpcodes>
,Constable
Packed Data Contents
See Apple's -- IOPEFInternals.h
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionBlock copy "count" bytes.Repeat "count" bytes "count2"+1 times.Interleaved repeated and unique data.Interleaved zero and unique data.Reserved.Reserved.Reserved.Zero fill "count" bytes. -
Method Summary
Modifier and TypeMethodDescriptionstatic PackedDataOpcodes
get
(int value) int
getValue()
static PackedDataOpcodes
Returns the enum constant of this class with the specified name.static PackedDataOpcodes[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
kPEFPkDataZero
Zero fill "count" bytes. -
kPEFPkDataBlock
Block copy "count" bytes. -
kPEFPkDataRepeat
Repeat "count" bytes "count2"+1 times. -
kPEFPkDataRepeatBlock
Interleaved repeated and unique data. -
kPEFPkDataRepeatZero
Interleaved zero and unique data. -
kPEFPkDataReserved5
Reserved. -
kPEFPkDataReserved6
Reserved. -
kPEFPkDataReserved7
Reserved.
-
-
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() -
get
-