public static enum InterceptorChain.State extends Enum<InterceptorChain.State>
| Enum Constant and Description | 
|---|
| ABORTED | 
| COMPLETE | 
| EXECUTING | 
| PAUSED | 
| SUSPENDED | 
| Modifier and Type | Method and Description | 
|---|---|
| static InterceptorChain.State | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static InterceptorChain.State[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final InterceptorChain.State PAUSED
public static final InterceptorChain.State SUSPENDED
public static final InterceptorChain.State EXECUTING
public static final InterceptorChain.State COMPLETE
public static final InterceptorChain.State ABORTED
public static InterceptorChain.State[] values()
for (InterceptorChain.State c : InterceptorChain.State.values()) System.out.println(c);
public static InterceptorChain.State 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