public enum LegacyFreeBusy extends java.lang.Enum<LegacyFreeBusy>
| Enum Constant and Description |
|---|
BUSY
The time slot that is associated with the appointment appears as busy.
|
FREE
The time slot that is associated with the appointment appears as free.
|
NO_DATA
No free/busy status is associated with the appointment.
|
NONE
None.
|
OUT_OF_OFFICE
The time slot that is associated with the appointment appears as out of office (OOF).
|
TENTATIVE
The time slot that is associated with the appointment appears as tentative.
|
WORKING_ELSEWHERE
Specifies the status as working outside the office.
|
| Modifier and Type | Method and Description |
|---|---|
static LegacyFreeBusy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LegacyFreeBusy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LegacyFreeBusy FREE
public static final LegacyFreeBusy TENTATIVE
public static final LegacyFreeBusy BUSY
public static final LegacyFreeBusy OUT_OF_OFFICE
public static final LegacyFreeBusy NO_DATA
public static final LegacyFreeBusy WORKING_ELSEWHERE
public static final LegacyFreeBusy NONE
public static LegacyFreeBusy[] values()
for (LegacyFreeBusy c : LegacyFreeBusy.values()) System.out.println(c);
public static LegacyFreeBusy 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