public enum CalendarRead extends Enum<CalendarRead>
Enum Constant and Description |
---|
HIDE_X_LOTUS
Used when APIs generate iCalendar
By default, some X-LOTUS properties and parameters will be included in iCalendar data returned by these APIs. HIDE_X_LOTUS causes all X-LOTUS properties and parameters to be removed from
the generated iCalendar data.Note: This overrides INCLUDE_X_LOTUS |
INCLUDE_X_LOTUS
Used when APIs generate iCalendar
Include all Lotus specific properties like X-LOTUS-UPDATE-SEQ, X-LOTUS-UPDATE_WISL, etc in the generated iCalendar data. These properties are NOT included by default in any iCalendar data returned by the APIs. Caution: Unless the caller knows how to use these it can be dangerous since their presence will be honored and can cause issues if not updated properly. Ignored if HIDE_X_LOTUS is also specified. |
SKIP_RESPONSE_DATA
RESERVED: This functionality is not currently in plan
When generating ATTENDEE info in Calendaring.readCalendarEntry(Database, String, String, Collection) ,
determine and populate response Status (which might be a performance hit) |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static int |
toBitMask(Collection<CalendarRead> findSet) |
static CalendarRead |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CalendarRead[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CalendarRead HIDE_X_LOTUS
HIDE_X_LOTUS
causes all X-LOTUS properties and parameters to be removed from
the generated iCalendar data.INCLUDE_X_LOTUS
public static final CalendarRead INCLUDE_X_LOTUS
HIDE_X_LOTUS
is also specified.public static final CalendarRead SKIP_RESPONSE_DATA
Calendaring.readCalendarEntry(Database, String, String, Collection)
,
determine and populate response Status (which might be a performance hit)public static CalendarRead[] values()
for (CalendarRead c : CalendarRead.values()) System.out.println(c);
public static CalendarRead valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int getValue()
public static int toBitMask(Collection<CalendarRead> findSet)
Copyright © 2019–2021 HCL. All rights reserved.