public static enum Provider.Type extends Enum<Provider.Type>
Enum Constant and Description |
---|
Feature |
InFaultInterceptor |
InInterceptor |
OutFaultInterceptor |
OutInterceptor |
Modifier and Type | Method and Description |
---|---|
static Provider.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Provider.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Provider.Type InInterceptor
public static final Provider.Type OutInterceptor
public static final Provider.Type InFaultInterceptor
public static final Provider.Type OutFaultInterceptor
public static final Provider.Type Feature
public static Provider.Type[] values()
for (Provider.Type c : Provider.Type.values()) System.out.println(c);
public static Provider.Type valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullApache CXF