Enum Class DebuggerThreadStatus
- All Implemented Interfaces:
Serializable,Comparable<DebuggerThreadStatus>,Constable
Statuses of a debugged thread.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThread was created.Thread is waiting on a monitor.Thread is paused or suspended.Thread is running.Thread is sleeping.Thread is terminated.Unknown thread status.Thread is waiting.Thread is a zombie. -
Method Summary
Modifier and TypeMethodDescriptionstatic DebuggerThreadStatusReturns the enum constant of this class with the specified name.static DebuggerThreadStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
UNKNOWN
Unknown thread status. -
CREATED
Thread was created. -
RUNNING
Thread is running. -
PAUSED
Thread is paused or suspended. -
SLEEPING
Thread is sleeping. -
WAITING
Thread is waiting. -
ZOMBIE
Thread is a zombie. -
MONITOR
Thread is waiting on a monitor. -
TERMINATED
Thread is terminated.
-
-
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
-