Enum FolderPermissionLevel
- java.lang.Object
-
- java.lang.Enum<FolderPermissionLevel>
-
- microsoft.exchange.webservices.data.core.enumeration.permission.folder.FolderPermissionLevel
-
- All Implemented Interfaces:
Serializable,Comparable<FolderPermissionLevel>
public enum FolderPermissionLevel extends Enum<FolderPermissionLevel>
Defines permission levels for calendar folder.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AuthorThe Author.ContributorThe Contributor.CustomThe Custom.EditorThe Editor.FreeBusyTimeAndSubjectAndLocationThe Free busy time and subject and location.FreeBusyTimeOnlyThe Free busy time only.NoneThe None.NoneditingAuthorThe Nonediting author.OwnerThe Owner.PublishingAuthorThe Publishing author.PublishingEditorThe Publishing editor.ReviewerThe Reviewer.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FolderPermissionLevelvalueOf(String name)Returns the enum constant of this type with the specified name.static FolderPermissionLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
None
public static final FolderPermissionLevel None
The None.
-
Owner
public static final FolderPermissionLevel Owner
The Owner.
-
PublishingEditor
public static final FolderPermissionLevel PublishingEditor
The Publishing editor.
-
Editor
public static final FolderPermissionLevel Editor
The Editor.
-
PublishingAuthor
public static final FolderPermissionLevel PublishingAuthor
The Publishing author.
-
Author
public static final FolderPermissionLevel Author
The Author.
-
NoneditingAuthor
public static final FolderPermissionLevel NoneditingAuthor
The Nonediting author.
-
Reviewer
public static final FolderPermissionLevel Reviewer
The Reviewer.
-
Contributor
public static final FolderPermissionLevel Contributor
The Contributor.
-
FreeBusyTimeOnly
public static final FolderPermissionLevel FreeBusyTimeOnly
The Free busy time only.
-
FreeBusyTimeAndSubjectAndLocation
public static final FolderPermissionLevel FreeBusyTimeAndSubjectAndLocation
The Free busy time and subject and location.
-
Custom
public static final FolderPermissionLevel Custom
The Custom.
-
-
Method Detail
-
values
public static FolderPermissionLevel[] 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 (FolderPermissionLevel c : FolderPermissionLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FolderPermissionLevel 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
-
-