Package com.bytedesk.ticket.process
Enum Class ProcessTypeEnum
- All Implemented Interfaces:
Serializable,Comparable<ProcessTypeEnum>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription演示流程 - 用于展示工作流能力(请假、报销、IT支持等)会话流程 - 用于客服会话管理外部工单流程 - 用于访客提交的工单内部工单流程 - 用于创建和处理客户服务工单 -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ProcessTypeEnumReturns the enum constant of this class with the specified name.static ProcessTypeEnum[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TICKET_INTERNAL
内部工单流程 - 用于创建和处理客户服务工单 -
TICKET_EXTERNAL
外部工单流程 - 用于访客提交的工单 -
THREAD
会话流程 - 用于客服会话管理 -
DEMO
演示流程 - 用于展示工作流能力(请假、报销、IT支持等)
-
-
Constructor Details
-
ProcessTypeEnum
private ProcessTypeEnum()
-
-
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
-