public static enum ServiceLoaderUtils.NotFoundPolicy extends java.lang.Enum<ServiceLoaderUtils.NotFoundPolicy>
没有找到服务时的策略
| Modifier and Type | Method and Description |
|---|---|
static ServiceLoaderUtils.NotFoundPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ServiceLoaderUtils.NotFoundPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceLoaderUtils.NotFoundPolicy EXCEPTION
public static final ServiceLoaderUtils.NotFoundPolicy IGNORE
public static ServiceLoaderUtils.NotFoundPolicy[] values()
for (ServiceLoaderUtils.NotFoundPolicy c : ServiceLoaderUtils.NotFoundPolicy.values()) System.out.println(c);
public static ServiceLoaderUtils.NotFoundPolicy valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null