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