Enum Class JobKeyEnum
- All Implemented Interfaces:
Serializable,Comparable<JobKeyEnum>,Constable
Quartz Job Data 的 key 枚举
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionjob 参数job 实现类名称job idjob 名称最大重试次数每次重试间隔租户 -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic JobKeyEnumReturns the enum constant of this class with the specified name.static JobKeyEnum[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
JOB_ID
job id -
JOB_NAME
job 名称 -
JOB_BEAN_NAME
job 实现类名称 -
JOB_ARGS
job 参数 -
JOB_TENANT
租户 -
JOB_RETRY_COUNT
最大重试次数 -
JOB_RETRY_INTERVAL
每次重试间隔
-
-
Constructor Details
-
JobKeyEnum
private JobKeyEnum()
-
-
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
-