Package org.bedework.synch.shared
Enum Notification.NotificationItem.ActionType
- java.lang.Object
-
- java.lang.Enum<Notification.NotificationItem.ActionType>
-
- org.bedework.synch.shared.Notification.NotificationItem.ActionType
-
- All Implemented Interfaces:
Serializable,Comparable<Notification.NotificationItem.ActionType>
- Enclosing class:
- Notification.NotificationItem
public static enum Notification.NotificationItem.ActionType extends Enum<Notification.NotificationItem.ActionType>
- Author:
- douglm
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CopiedEventCreatedEventDeletedEventFullSynchGetInfoGetting system informationModifiedEventMovedEventNewMailEventNewSubscriptionStatusEventSubscriptionStatusUnsubscribe
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Notification.NotificationItem.ActionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static Notification.NotificationItem.ActionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FullSynch
public static final Notification.NotificationItem.ActionType FullSynch
-
CopiedEvent
public static final Notification.NotificationItem.ActionType CopiedEvent
-
CreatedEvent
public static final Notification.NotificationItem.ActionType CreatedEvent
-
DeletedEvent
public static final Notification.NotificationItem.ActionType DeletedEvent
-
ModifiedEvent
public static final Notification.NotificationItem.ActionType ModifiedEvent
-
MovedEvent
public static final Notification.NotificationItem.ActionType MovedEvent
-
NewMailEvent
public static final Notification.NotificationItem.ActionType NewMailEvent
-
StatusEvent
public static final Notification.NotificationItem.ActionType StatusEvent
-
NewSubscription
public static final Notification.NotificationItem.ActionType NewSubscription
-
Unsubscribe
public static final Notification.NotificationItem.ActionType Unsubscribe
-
SubscriptionStatus
public static final Notification.NotificationItem.ActionType SubscriptionStatus
-
GetInfo
public static final Notification.NotificationItem.ActionType GetInfo
Getting system information
-
-
Method Detail
-
values
public static Notification.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 (Notification.NotificationItem.ActionType c : Notification.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 Notification.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
-
-