public enum NotificationType extends java.lang.Enum<NotificationType>
| Enum Constant and Description |
|---|
AGENDA
"agenda" - An agenda with the events of the day (sent out in the morning).
|
EVENT_CANCELLATION
"eventCancellation" - Notification sent when an event is cancelled.
|
EVENT_CHANGE
"eventChange" - Notification sent when an event is changed.
|
EVENT_CREATION
"eventCreation" - Notification sent when a new event is put on the calendar.
|
EVENT_RESPONSE
"eventResponse" - Notification sent when an event is changed.
|
| Modifier and Type | Method and Description |
|---|---|
static NotificationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NotificationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationType EVENT_CREATION
public static final NotificationType EVENT_CHANGE
public static final NotificationType EVENT_CANCELLATION
public static final NotificationType EVENT_RESPONSE
public static final NotificationType AGENDA
public static NotificationType[] values()
for (NotificationType c : NotificationType.values()) System.out.println(c);
public static NotificationType 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