Enum Class FlowType

java.lang.Object
java.lang.Enum<FlowType>
com.codingapi.springboot.flow.em.FlowType
所有已实现的接口:
Serializable, Comparable<FlowType>, Constable

public enum FlowType extends Enum<FlowType>
流程的类型
  • 枚举常量详细资料

    • TODO

      public static final FlowType TODO
      待办
    • DONE

      public static final FlowType DONE
      已办
    • CIRCULATE

      public static final FlowType CIRCULATE
      传阅
    • TRANSFER

      public static final FlowType TRANSFER
      转办
    • WAITING

      public static final FlowType WAITING
      等待执行
    • DELETE

      public static final FlowType DELETE
      删除
  • 方法详细资料

    • values

      public static FlowType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      返回:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static FlowType valueOf(String name)
      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.)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - 如果参数为空值
    • parser

      public static FlowType parser(String type)