Enum Class GhidraScript.AnalysisMode

java.lang.Object
java.lang.Enum<GhidraScript.AnalysisMode>
ghidra.app.script.GhidraScript.AnalysisMode
All Implemented Interfaces:
Serializable, Comparable<GhidraScript.AnalysisMode>, Constable
Enclosing class:
GhidraScript

public static enum GhidraScript.AnalysisMode extends Enum<GhidraScript.AnalysisMode>
  • Enum Constant Details

    • ENABLED

      public static final GhidraScript.AnalysisMode ENABLED
      ENABLED - Script will run normally with Auto-Analysis responding to changes
    • DISABLED

      public static final GhidraScript.AnalysisMode DISABLED
      DISABLED - Script will coordinate with AutoAnalysisManager to run with analysis disabled (change events will be ignored). Script will wait for any pending analysis to complete. Within headed environments an additional modal task dialog will be displayed while the script is active to prevent the user from initiating additional program changes.
    • SUSPENDED

      public static final GhidraScript.AnalysisMode SUSPENDED
      SUSPENDED - Script will coordinate with AutoAnalysisManager to run with analysis suspended (change events will be analyzed after script execution completes). Script will wait for any pending analysis to complete.
  • Method Details

    • values

      public static GhidraScript.AnalysisMode[] 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 GhidraScript.AnalysisMode 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