Enum Class StepKind
- All Implemented Interfaces:
Serializable, Comparable<StepKind>, Constable
Classifies a single step in a
DeadlockChain's rationale trace.
Used by the IDE to render the appropriate icon/treatment per step and by
MCP consumers to filter or summarise.-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA normal call edge along the chain —fcallsg.A thread-spawning call edge — the function continues on a different thread.Anenter()call — the outer or inner of a nested pair.Entry into aMutexKeycallback body. -
Method Summary
-
Enum Constant Details
-
ENTER
Anenter()call — the outer or inner of a nested pair. -
KEY_BODY_ENTRY
Entry into aMutexKeycallback body. -
CALL
A normal call edge along the chain —fcallsg. -
CROSS_THREAD_BOUNDARY
A thread-spawning call edge — the function continues on a different thread. The chain proceeds through this edge with composed edge kindCROSS_THREAD.
-
-
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
-