Enum SyncFolderitemsResponse.NotificationItem.ActionType
- java.lang.Object
-
- java.lang.Enum<SyncFolderitemsResponse.NotificationItem.ActionType>
-
- org.bedework.synch.cnctrs.exchange.responses.SyncFolderitemsResponse.NotificationItem.ActionType
-
- All Implemented Interfaces:
Serializable,Comparable<SyncFolderitemsResponse.NotificationItem.ActionType>
- Enclosing class:
- SyncFolderitemsResponse.NotificationItem
public static enum SyncFolderitemsResponse.NotificationItem.ActionType extends Enum<SyncFolderitemsResponse.NotificationItem.ActionType>
- Author:
- douglm
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CopiedEventCreatedEventDeletedEventModifiedEventMovedEventNewMailEventStatusEvent
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SyncFolderitemsResponse.NotificationItem.ActionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static SyncFolderitemsResponse.NotificationItem.ActionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CopiedEvent
public static final SyncFolderitemsResponse.NotificationItem.ActionType CopiedEvent
-
CreatedEvent
public static final SyncFolderitemsResponse.NotificationItem.ActionType CreatedEvent
-
DeletedEvent
public static final SyncFolderitemsResponse.NotificationItem.ActionType DeletedEvent
-
ModifiedEvent
public static final SyncFolderitemsResponse.NotificationItem.ActionType ModifiedEvent
-
MovedEvent
public static final SyncFolderitemsResponse.NotificationItem.ActionType MovedEvent
-
NewMailEvent
public static final SyncFolderitemsResponse.NotificationItem.ActionType NewMailEvent
-
StatusEvent
public static final SyncFolderitemsResponse.NotificationItem.ActionType StatusEvent
-
-
Method Detail
-
values
public static SyncFolderitemsResponse.NotificationItem.ActionType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SyncFolderitemsResponse.NotificationItem.ActionType c : SyncFolderitemsResponse.NotificationItem.ActionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SyncFolderitemsResponse.NotificationItem.ActionType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-