public enum CalendarPermissionReadAccess extends java.lang.Enum<CalendarPermissionReadAccess>
| Enum Constant and Description |
|---|
FULL_DETAILS
Indicates that the user has permission to view all items in the calendar, including free/busy time and subject, location, and details of appointments.
|
NONE
Indicates that the user does not have permission to view items in the calendar.
|
TIME_AND_SUBJECT_AND_LOCATION
Indicates that the user has permission to view free/busy time in the calendar and the subject and location of appointments.
|
TIME_ONLY
Indicates that the user has permission to view only free/busy time in the calendar.
|
| Modifier and Type | Method and Description |
|---|---|
static CalendarPermissionReadAccess |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CalendarPermissionReadAccess[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CalendarPermissionReadAccess TIME_ONLY
public static final CalendarPermissionReadAccess TIME_AND_SUBJECT_AND_LOCATION
public static final CalendarPermissionReadAccess FULL_DETAILS
public static final CalendarPermissionReadAccess NONE
public static CalendarPermissionReadAccess[] values()
for (CalendarPermissionReadAccess c : CalendarPermissionReadAccess.values()) System.out.println(c);
public static CalendarPermissionReadAccess valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null