microsoft.exchange.webservices.data
Enum FolderPermissionLevel

java.lang.Object
  extended by java.lang.Enum<FolderPermissionLevel>
      extended by microsoft.exchange.webservices.data.FolderPermissionLevel
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<FolderPermissionLevel>

public enum FolderPermissionLevel
extends java.lang.Enum<FolderPermissionLevel>

Defines permission levels for calendar folders.


Enum Constant Summary
Author
          The Author.
Contributor
          The Contributor.
Custom
          The Custom.
Editor
          The Editor.
FreeBusyTimeAndSubjectAndLocation
          The Free busy time and subject and location.
FreeBusyTimeOnly
          The Free busy time only.
None
          The None.
NoneditingAuthor
          The Nonediting author.
Owner
          The Owner.
PublishingAuthor
          The Publishing author.
PublishingEditor
          The Publishing editor.
Reviewer
          The Reviewer.
 
Method Summary
static FolderPermissionLevel valueOf(java.lang.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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null