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

public enum NativeDecompilationStage extends Enum<NativeDecompilationStage>
A high-level view of what stage a target being decompiled is at.
  • Enum Constant Details

  • Method Details

    • values

      public static NativeDecompilationStage[] 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

      public static NativeDecompilationStage valueOf(String name)
      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 name
      NullPointerException - 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