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