- All Implemented Interfaces:
Serializable,Comparable<DebuggerState>,Constable
Represents the possible states of the Qute debugger during a debugging session.
This enum is used to track the current lifecycle state of the debugger, from initialization to execution, suspension, and termination.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe debugger has been initialized but has not yet started executing the debuggee.The debugger is actively running the debuggee without being paused or stopped.The debugger has completely stopped the execution and the session has ended.The debugger has temporarily suspended the execution of the debuggee, usually due to hitting a breakpoint, completing a step, or a manual pause request.The state is unknown, typically used as a default before the debugger has been initialized. -
Method Summary
Modifier and TypeMethodDescriptionstatic DebuggerStateReturns the enum constant of this class with the specified name.static DebuggerState[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNKNOWN
The state is unknown, typically used as a default before the debugger has been initialized. -
INITIALIZED
The debugger has been initialized but has not yet started executing the debuggee. -
RUNNING
The debugger is actively running the debuggee without being paused or stopped. -
SUSPENDED
The debugger has temporarily suspended the execution of the debuggee, usually due to hitting a breakpoint, completing a step, or a manual pause request. -
STOPPED
The debugger has completely stopped the execution and the session has ended.
-
-
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
-