public enum FreeBusyViewType extends java.lang.Enum<FreeBusyViewType>
| Enum Constant and Description |
|---|
DETAILED
Represents the legacy status information: free, busy, tentative, and OOF; the start/end times of the appointments; and various properties of the appointment such as subject, location, and importance.
|
DETAILED_MERGED
Represents all the properties in Detailed with a stream of merged free/busy availability information.
|
FREE_BUSY
Represents the legacy status information: free, busy, tentative, and OOF.
|
FREE_BUSY_MERGED
Represents all the properties in FreeBusy with a stream of merged free/busy availability information.
|
MERGED_ONLY
Represents an aggregated free/busy stream.
|
NONE
This value is not valid for requests.
|
| Modifier and Type | Method and Description |
|---|---|
static FreeBusyViewType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FreeBusyViewType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FreeBusyViewType NONE
public static final FreeBusyViewType MERGED_ONLY
public static final FreeBusyViewType FREE_BUSY
public static final FreeBusyViewType FREE_BUSY_MERGED
public static final FreeBusyViewType DETAILED
public static final FreeBusyViewType DETAILED_MERGED
public static FreeBusyViewType[] values()
for (FreeBusyViewType c : FreeBusyViewType.values()) System.out.println(c);
public static FreeBusyViewType 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