public enum CalendarRoleType extends java.lang.Enum<CalendarRoleType>
| Enum Constant and Description |
|---|
CUSTOM
custom
|
DELEGATE_WITH_PRIVATE_EVENT_ACCESS
delegate With Private Event Access
|
DELEGATE_WITHOUT_PRIVATE_EVENT_ACCESS
delegate Without Private Event Access
|
FREE_BUSY_READ
free Busy Read
|
LIMITED_READ
limited Read
|
NONE
none
|
READ
read
|
UNEXPECTED_VALUE
For CalendarRoleType values that were not expected from the service
|
WRITE
write
|
| Modifier and Type | Method and Description |
|---|---|
static CalendarRoleType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CalendarRoleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CalendarRoleType NONE
public static final CalendarRoleType FREE_BUSY_READ
public static final CalendarRoleType LIMITED_READ
public static final CalendarRoleType READ
public static final CalendarRoleType WRITE
public static final CalendarRoleType DELEGATE_WITHOUT_PRIVATE_EVENT_ACCESS
public static final CalendarRoleType DELEGATE_WITH_PRIVATE_EVENT_ACCESS
public static final CalendarRoleType CUSTOM
public static final CalendarRoleType UNEXPECTED_VALUE
public static CalendarRoleType[] values()
for (CalendarRoleType c : CalendarRoleType.values()) System.out.println(c);
public static CalendarRoleType 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