public enum RollingParamEvent extends Enum<RollingParamEvent>
| Enum Constant and Description |
|---|
REQUEST_BLOCKED
Indicates that the request is blocked by a specific slot.
|
REQUEST_PASSED
Indicates that the request successfully passed the slot chain (entry).
|
| Modifier and Type | Method and Description |
|---|---|
static RollingParamEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RollingParamEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RollingParamEvent REQUEST_PASSED
public static final RollingParamEvent REQUEST_BLOCKED
public static RollingParamEvent[] values()
for (RollingParamEvent c : RollingParamEvent.values()) System.out.println(c);
public static RollingParamEvent 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 © 2022 Alibaba Group. All rights reserved.