public static enum ServiceEventKey.EventType extends Enum<ServiceEventKey.EventType>
| Enum Constant and Description |
|---|
CIRCUIT_BREAKING |
FAULT_DETECTING |
INSTANCE |
RATE_LIMITING |
ROUTING |
SERVICE |
SERVICE_CONTRACT |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static ServiceEventKey.EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceEventKey.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceEventKey.EventType UNKNOWN
public static final ServiceEventKey.EventType INSTANCE
public static final ServiceEventKey.EventType ROUTING
public static final ServiceEventKey.EventType CIRCUIT_BREAKING
public static final ServiceEventKey.EventType RATE_LIMITING
public static final ServiceEventKey.EventType SERVICE
public static final ServiceEventKey.EventType FAULT_DETECTING
public static final ServiceEventKey.EventType SERVICE_CONTRACT
public static ServiceEventKey.EventType[] values()
for (ServiceEventKey.EventType c : ServiceEventKey.EventType.values()) System.out.println(c);
public static ServiceEventKey.EventType 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 © 2024. All rights reserved.