public enum ObPredefinedEventTypeEnum extends Enum<ObPredefinedEventTypeEnum>
| Enum Constant and Description |
|---|
DO_EVENT |
ENTRY_EVENT |
EXIT_EVENT |
| Modifier and Type | Method and Description |
|---|---|
static ObPredefinedEventTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObPredefinedEventTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObPredefinedEventTypeEnum ENTRY_EVENT
public static final ObPredefinedEventTypeEnum DO_EVENT
public static final ObPredefinedEventTypeEnum EXIT_EVENT
public static ObPredefinedEventTypeEnum[] values()
for (ObPredefinedEventTypeEnum c : ObPredefinedEventTypeEnum.values()) System.out.println(c);
public static ObPredefinedEventTypeEnum 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