Enum Class NativeDecompilationStage
java.lang.Object
java.lang.Enum<NativeDecompilationStage>
com.pnfsoftware.jeb.core.units.code.asm.decompiler.NativeDecompilationStage
- All Implemented Interfaces:
Serializable
,Comparable<NativeDecompilationStage>
,Constable
A high-level view of what stage a target being decompiled is at.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe current high-level stage cannot be determined. -
Method Summary
Modifier and TypeMethodDescriptionint
getId()
Get the numerical id associated to the decompilation phase.static NativeDecompilationStage
Returns the enum constant of this class with the specified name.static NativeDecompilationStage[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNKNOWN
The current high-level stage cannot be determined. -
RAW_CONVERSION
-
IR_CONVERSION
-
SIMULATION
-
STACK_ANALYSIS
-
TYPES_APPLICATION
-
LIFTING
-
COMPLETED
-
-
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
-
getId
public int getId()Get the numerical id associated to the decompilation phase.Note: Within the pipeline, when specifying numerical stage ids (as opposed to enums objects), a positive stage id generally refers to a "post-execution" of the stage, whereas a negative stage id means "pre-execution" of the stage.
- Returns:
- on success, an id in [1, 1000); on failure, 0
-