public enum EventsTypeEnum extends Enum<EventsTypeEnum>
Enum Constant and Description |
---|
CREATE_NEW_MESSAGE |
DELETED_MESSAGE |
LOAD_MESSAGES_EVENT |
MARK_MESSAGE_AS_READ |
REPLY_FORWARD_MESSAGE |
SELECTED_MESSAGE |
Modifier and Type | Method and Description |
---|---|
static EventsTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventsTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventsTypeEnum DELETED_MESSAGE
public static final EventsTypeEnum MARK_MESSAGE_AS_READ
public static final EventsTypeEnum SELECTED_MESSAGE
public static final EventsTypeEnum CREATE_NEW_MESSAGE
public static final EventsTypeEnum REPLY_FORWARD_MESSAGE
public static final EventsTypeEnum LOAD_MESSAGES_EVENT
public static EventsTypeEnum[] values()
for (EventsTypeEnum c : EventsTypeEnum.values()) System.out.println(c);
public static EventsTypeEnum 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 © 2015. All Rights Reserved.