public enum InterceptionStage extends Enum<InterceptionStage>
| Enum Constant and Description |
|---|
HEADERS_RECEIVED |
REQUEST |
| Modifier and Type | Method and Description |
|---|---|
static InterceptionStage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InterceptionStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterceptionStage REQUEST
public static final InterceptionStage HEADERS_RECEIVED
public static InterceptionStage[] values()
for (InterceptionStage c : InterceptionStage.values()) System.out.println(c);
public static InterceptionStage 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 nullCopyright © 2020. All rights reserved.