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