| Enum Constant and Description |
|---|
COPIED
Represents an event where an item or folder is copied.
|
CREATED
Represents an event where an item or folder is created.
|
DELETED
Represents an event where an item or folder is deleted.
|
FREE_BUSY_CHANGED
Represents an event in which an item's free/busy time has changed.
|
MODIFIED
Represents an event where an item or folder is modified.
|
MOVED
Represents an event where an item or folder is moved from one parent folder to another parent folder.
|
NEW_MAIL
Represents an event triggered by a new mail item in a mailbox.
|
| Modifier and Type | Method and Description |
|---|---|
static EventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventType COPIED
public static final EventType CREATED
public static final EventType DELETED
public static final EventType MODIFIED
public static final EventType MOVED
public static final EventType NEW_MAIL
public static final EventType FREE_BUSY_CHANGED
public static EventType[] values()
for (EventType c : EventType.values()) System.out.println(c);
public static EventType 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