public enum CalendarDocumentOpen extends Enum<CalendarDocumentOpen>
Enum Constant and Description |
---|
HANDLE_NOSPLIT
Used when getting a handle via CalOpenNoteHandle (Handy for read-only cases)
When a specific instance of a recurring entry is requested, the underlying note may represent multiple instances. Default behavior makes appropriate modifications so that the returned handle represents a single instance (but this might cause notes to be created or modified as a side effect). Using HANDLE_NOSPLIT will bypass any note creations or modifications and return a
note handle that may represent more than a single instance on the calendar. |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static int |
toBitMask(Collection<CalendarDocumentOpen> findSet) |
static CalendarDocumentOpen |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CalendarDocumentOpen[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CalendarDocumentOpen HANDLE_NOSPLIT
HANDLE_NOSPLIT
will bypass any note creations or modifications and return a
note handle that may represent more than a single instance on the calendar.public static CalendarDocumentOpen[] values()
for (CalendarDocumentOpen c : CalendarDocumentOpen.values()) System.out.println(c);
public static CalendarDocumentOpen 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<CalendarDocumentOpen> findSet)
Copyright © 2019–2021 HCL. All rights reserved.