- 所有已实现的接口:
Serializable, Comparable<InterruptSource>, Constable
Enum representing the source of an interruption.
This indicates who or what initiated the interruption:
USER: Interruption triggered by user request
TOOL: Interruption triggered by tool execution logic
SYSTEM: Interruption triggered by system (timeout, resource limit, etc.)
-
-
枚举常量概要
枚举常量
Interruption initiated by system (timeout, resource limit, etc.).
Interruption initiated by tool execution logic.
Interruption initiated by user request.
-
方法概要
返回包含该枚举类的常量的数组,
顺序与声明这些常量的顺序相同
从类继承的方法 java.lang.Enum
clone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
枚举常量详细资料
-
USER
Interruption initiated by user request.
-
-
SYSTEM
Interruption initiated by system (timeout, resource limit, etc.).
-
方法详细资料
-
values
返回包含该枚举类的常量的数组,
顺序与声明这些常量的顺序相同
- 返回:
- 包含该枚举类的常量的数组,顺序与声明这些常量的顺序相同
-