Enum FreeBusyViewType
- java.lang.Object
-
- java.lang.Enum<FreeBusyViewType>
-
- microsoft.exchange.webservices.data.core.enumeration.availability.FreeBusyViewType
-
- All Implemented Interfaces:
Serializable,Comparable<FreeBusyViewType>
public enum FreeBusyViewType extends Enum<FreeBusyViewType>
Defines the type of free/busy information returned by a GetUserAvailability operation.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DetailedThe Detailed.DetailedMergedThe Detailed merged.FreeBusyThe Free busy.FreeBusyMergedThe Free busy merged.MergedOnlyThe Merged only.NoneThe None.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FreeBusyViewTypevalueOf(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.
-
-
-
Enum Constant Detail
-
None
public static final FreeBusyViewType None
The None.
-
MergedOnly
public static final FreeBusyViewType MergedOnly
The Merged only.
-
FreeBusy
public static final FreeBusyViewType FreeBusy
The Free busy.
-
FreeBusyMerged
public static final FreeBusyViewType FreeBusyMerged
The Free busy merged.
-
Detailed
public static final FreeBusyViewType Detailed
The Detailed.
-
DetailedMerged
public static final FreeBusyViewType DetailedMerged
The Detailed merged.
-
-
Method Detail
-
values
public static FreeBusyViewType[] 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 (FreeBusyViewType c : FreeBusyViewType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FreeBusyViewType 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
-
-