Enum Class DebuggerState

java.lang.Object
java.lang.Enum<DebuggerState>
io.quarkus.qute.debug.DebuggerState
All Implemented Interfaces:
Serializable, Comparable<DebuggerState>, Constable

public enum DebuggerState extends Enum<DebuggerState>
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 Constants
    Enum Constant
    Description
    The 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 Type
    Method
    Description
    Returns the enum constant of this class with the specified name.
    static DebuggerState[]
    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

    • UNKNOWN

      public static final DebuggerState UNKNOWN
      The state is unknown, typically used as a default before the debugger has been initialized.
    • INITIALIZED

      public static final DebuggerState INITIALIZED
      The debugger has been initialized but has not yet started executing the debuggee.
    • RUNNING

      public static final DebuggerState RUNNING
      The debugger is actively running the debuggee without being paused or stopped.
    • SUSPENDED

      public static final DebuggerState 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

      public static final DebuggerState STOPPED
      The debugger has completely stopped the execution and the session has ended.
  • Method Details

    • values

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