Enum Class DebuggerEventType
- All Implemented Interfaces:
Serializable,Comparable<DebuggerEventType>,Constable
Debugger event types.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionExecution breakpoint was hit.Function-exit breakpoint was hit.Code was loaded.Code was unloaded.Target exception was reported.Function entry was reported.Function exit was reported.Debuggee output was reported.Target signal was reported.Target execution was suspended.Thread start was reported.Thread stop was reported. -
Method Summary
Modifier and TypeMethodDescriptionstatic DebuggerEventTypeReturns the enum constant of this class with the specified name.static DebuggerEventType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SUSPENDED
Target execution was suspended. -
BREAKPOINT
Execution breakpoint was hit. -
BREAKPOINT_FUNCTION_EXIT
Function-exit breakpoint was hit. -
SIGNAL
Target signal was reported. -
EXCEPTION
Target exception was reported. -
FUNCTION_ENTRY
Function entry was reported. -
FUNCTION_EXIT
Function exit was reported. -
CODE_LOAD
Code was loaded. -
CODE_UNLOAD
Code was unloaded. -
THREAD_START
Thread start was reported. -
THREAD_STOP
Thread stop was reported. -
OUTPUT
Debuggee output was reported.
-
-
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
-