public static enum ServiceInstanceLoggingEvent.Operation extends Enum<ServiceInstanceLoggingEvent.Operation>
Enum Constant and Description |
---|
START
Start publishing log stream for a given service instance id
|
STOP
Stop publishing log stream for a given service instance id
|
Modifier and Type | Method and Description |
---|---|
static ServiceInstanceLoggingEvent.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceInstanceLoggingEvent.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceInstanceLoggingEvent.Operation START
public static final ServiceInstanceLoggingEvent.Operation STOP
public static ServiceInstanceLoggingEvent.Operation[] values()
for (ServiceInstanceLoggingEvent.Operation c : ServiceInstanceLoggingEvent.Operation.values()) System.out.println(c);
public static ServiceInstanceLoggingEvent.Operation 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