Package org.exoplatform.agenda.constant
Enum AgendaEventModificationType
- java.lang.Object
-
- java.lang.Enum<AgendaEventModificationType>
-
- org.exoplatform.agenda.constant.AgendaEventModificationType
-
- All Implemented Interfaces:
Serializable,Comparable<AgendaEventModificationType>
public enum AgendaEventModificationType extends Enum<AgendaEventModificationType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AgendaEventModificationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AgendaEventModificationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADDED
public static final AgendaEventModificationType ADDED
-
UPDATED
public static final AgendaEventModificationType UPDATED
-
DELETED
public static final AgendaEventModificationType DELETED
-
RECURRENCE_DELETED
public static final AgendaEventModificationType RECURRENCE_DELETED
-
SWITCHED_EVENT_TO_DATE_POLL
public static final AgendaEventModificationType SWITCHED_EVENT_TO_DATE_POLL
-
SWITCHED_DATE_POLL_TO_EVENT
public static final AgendaEventModificationType SWITCHED_DATE_POLL_TO_EVENT
-
DATE_OPTION_SELECTED
public static final AgendaEventModificationType DATE_OPTION_SELECTED
-
DATE_OPTION_UPDATED
public static final AgendaEventModificationType DATE_OPTION_UPDATED
-
DATE_OPTION_CREATED
public static final AgendaEventModificationType DATE_OPTION_CREATED
-
DATE_OPTION_DELETED
public static final AgendaEventModificationType DATE_OPTION_DELETED
-
SUMMARY_UPDATED
public static final AgendaEventModificationType SUMMARY_UPDATED
-
DESCRIPTION_UPDATED
public static final AgendaEventModificationType DESCRIPTION_UPDATED
-
OWNER_UPDATED
public static final AgendaEventModificationType OWNER_UPDATED
-
DATES_UPDATED
public static final AgendaEventModificationType DATES_UPDATED
-
START_DATE_UPDATED
public static final AgendaEventModificationType START_DATE_UPDATED
-
END_DATE_UPDATED
public static final AgendaEventModificationType END_DATE_UPDATED
-
LOCATION_UPDATED
public static final AgendaEventModificationType LOCATION_UPDATED
-
COLOR_UPDATED
public static final AgendaEventModificationType COLOR_UPDATED
-
TIMEZONE_UPDATED
public static final AgendaEventModificationType TIMEZONE_UPDATED
-
AVAILABILITY_UPDATED
public static final AgendaEventModificationType AVAILABILITY_UPDATED
-
STATUS_UPDATED
public static final AgendaEventModificationType STATUS_UPDATED
-
RECURRENCE_UPDATED
public static final AgendaEventModificationType RECURRENCE_UPDATED
-
ATTENDEE_ADDED
public static final AgendaEventModificationType ATTENDEE_ADDED
-
ATTENDEE_DELETED
public static final AgendaEventModificationType ATTENDEE_DELETED
-
CONFERENCE_ADDED
public static final AgendaEventModificationType CONFERENCE_ADDED
-
CONFERENCE_DELETED
public static final AgendaEventModificationType CONFERENCE_DELETED
-
REMINDER_ADDED
public static final AgendaEventModificationType REMINDER_ADDED
-
REMINDER_DELETED
public static final AgendaEventModificationType REMINDER_DELETED
-
ALLOW_INVITE_UPDATED
public static final AgendaEventModificationType ALLOW_INVITE_UPDATED
-
ALLOW_MODIFY_UPDATED
public static final AgendaEventModificationType ALLOW_MODIFY_UPDATED
-
-
Method Detail
-
values
public static AgendaEventModificationType[] 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 (AgendaEventModificationType c : AgendaEventModificationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AgendaEventModificationType 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
-
-