Enum LegacyFreeBusyStatus
- java.lang.Object
-
- java.lang.Enum<LegacyFreeBusyStatus>
-
- microsoft.exchange.webservices.data.core.enumeration.property.LegacyFreeBusyStatus
-
- All Implemented Interfaces:
Serializable,Comparable<LegacyFreeBusyStatus>
public enum LegacyFreeBusyStatus extends Enum<LegacyFreeBusyStatus>
Defines the legacy free/busy status associated with an appointment.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetBusyStatus()static LegacyFreeBusyStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static LegacyFreeBusyStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Free
public static final LegacyFreeBusyStatus Free
The Free.
-
Tentative
public static final LegacyFreeBusyStatus Tentative
The Tentative.
-
Busy
public static final LegacyFreeBusyStatus Busy
The Busy.
-
OOF
public static final LegacyFreeBusyStatus OOF
The OOF.
-
NoData
public static final LegacyFreeBusyStatus NoData
The No data.
-
-
Method Detail
-
values
public static LegacyFreeBusyStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (LegacyFreeBusyStatus c : LegacyFreeBusyStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LegacyFreeBusyStatus valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getBusyStatus
public int getBusyStatus()
-
-