Enum Class EmulateExecutionState

java.lang.Object
java.lang.Enum<EmulateExecutionState>
ghidra.pcode.emulate.EmulateExecutionState
All Implemented Interfaces:
Serializable, Comparable<EmulateExecutionState>, Constable

@Deprecated(since="12.1", forRemoval=true) public enum EmulateExecutionState extends Enum<EmulateExecutionState>
Deprecated, for removal: This API element is subject to removal in a future version.
  • Nested Class Summary

    Nested classes/interfaces inherited from class java.lang.Enum

    Enum.EnumDesc<E extends Enum<E>>
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
    Currently stopped at a breakpoint
    Deprecated, for removal: This API element is subject to removal in a future version.
    Currently executing instruction pcode
    Deprecated, for removal: This API element is subject to removal in a future version.
    Execution stopped due to a fault/error
    Deprecated, for removal: This API element is subject to removal in a future version.
    Currently decoding instruction (i.e., generating pcode ops)
    Deprecated, for removal: This API element is subject to removal in a future version.
    Currently stopped
  • Method Summary

    Modifier and Type
    Method
    Description
    Deprecated, for removal: This API element is subject to removal in a future version.
    Returns the enum constant of this class with the specified name.
    Deprecated, for removal: This API element is subject to removal in a future version.
    Returns an array containing the constants of this enum class, in the order they are declared.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • STOPPED

      public static final EmulateExecutionState STOPPED
      Deprecated, for removal: This API element is subject to removal in a future version.
      Currently stopped
    • BREAKPOINT

      public static final EmulateExecutionState BREAKPOINT
      Deprecated, for removal: This API element is subject to removal in a future version.
      Currently stopped at a breakpoint
    • INSTRUCTION_DECODE

      public static final EmulateExecutionState INSTRUCTION_DECODE
      Deprecated, for removal: This API element is subject to removal in a future version.
      Currently decoding instruction (i.e., generating pcode ops)
    • EXECUTE

      public static final EmulateExecutionState EXECUTE
      Deprecated, for removal: This API element is subject to removal in a future version.
      Currently executing instruction pcode
    • FAULT

      public static final EmulateExecutionState FAULT
      Deprecated, for removal: This API element is subject to removal in a future version.
      Execution stopped due to a fault/error
  • Method Details

    • values

      public static EmulateExecutionState[] values()
      Deprecated, for removal: This API element is subject to removal in a future version.
      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 EmulateExecutionState valueOf(String name)
      Deprecated, for removal: This API element is subject to removal in a future version.
      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