public static enum JobProperties.JobPropertiesEnum extends Enum<JobProperties.JobPropertiesEnum>
| 枚举常量和说明 |
|---|
EXECUTOR_SERVICE_HANDLER
线程池服务处理器.
|
JOB_EXCEPTION_HANDLER
作业异常处理器.
|
| 限定符和类型 | 方法和说明 |
|---|---|
static JobProperties.JobPropertiesEnum |
from(String key)
通过属性键获取枚举.
|
static JobProperties.JobPropertiesEnum |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static JobProperties.JobPropertiesEnum[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final JobProperties.JobPropertiesEnum JOB_EXCEPTION_HANDLER
public static final JobProperties.JobPropertiesEnum EXECUTOR_SERVICE_HANDLER
public static JobProperties.JobPropertiesEnum[] values()
for (JobProperties.JobPropertiesEnum c : JobProperties.JobPropertiesEnum.values()) System.out.println(c);
public static JobProperties.JobPropertiesEnum valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public static JobProperties.JobPropertiesEnum from(String key)
key - 属性键Copyright © 2016. All rights reserved.