public static enum ServiceCallEvent.Type extends java.lang.Enum<ServiceCallEvent.Type>
| Enum Constant and Description |
|---|
CALL |
EXCEPTION |
FINISHED |
INTERMEDIATE_RESULT |
RESULT |
| Modifier and Type | Method and Description |
|---|---|
static ServiceCallEvent.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ServiceCallEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceCallEvent.Type CALL
public static final ServiceCallEvent.Type RESULT
public static final ServiceCallEvent.Type EXCEPTION
public static final ServiceCallEvent.Type INTERMEDIATE_RESULT
public static final ServiceCallEvent.Type FINISHED
public static ServiceCallEvent.Type[] values()
for (ServiceCallEvent.Type c : ServiceCallEvent.Type.values()) System.out.println(c);
public static ServiceCallEvent.Type valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null