Enum WellKnownFolderName
- java.lang.Object
-
- java.lang.Enum<WellKnownFolderName>
-
- microsoft.exchange.webservices.data.core.enumeration.property.WellKnownFolderName
-
- All Implemented Interfaces:
Serializable,Comparable<WellKnownFolderName>
public enum WellKnownFolderName extends Enum<WellKnownFolderName>
Defines well known folder names.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ArchiveDeletedItemsThe Deleted Items folder in the archive mailbox.ArchiveMsgFolderRootThe message folder root in the archive mailbox.ArchiveRecoverableItemsDeletionsThe Dumpster 2.0 soft deletions folder in the archive mailbox.ArchiveRecoverableItemsPurgesThe Dumpster 2.0 hard deletions folder in the archive mailbox.ArchiveRecoverableItemsRootThe Dumpster 2.0 root folder in the archive mailbox.ArchiveRecoverableItemsVersionsThe Dumpster 2.0 versions folder in the archive mailbox.ArchiveRootThe root of the archive mailbox.CalendarThe Calendar.ContactsThe Contacts.DeletedItemsThe Deleted item.DraftsThe Drafts.ExternalContactsThe External Contacts.InboxThe Inbox.JournalThe Journal.JunkEmailThe Junk email.MsgFolderRootThe Msg folder root.NotesThe Notes.OutboxThe Outbox.PublicFoldersRootThe Public folder root.RecoverableItemsDeletionsThe Dumpster 2.0 soft deletions folder.RecoverableItemsPurgesThe Dumpster 2.0 hard deletions folder.RecoverableItemsRootThe Dumpster 2.0 root folder.RecoverableItemsVersionsThe Dumpster 2.0 versions folder.RootThe Root.SearchFoldersThe Search folder.SentItemsThe Sent item.TasksThe Tasks.VoiceMailThe Voice mail.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WellKnownFolderNamevalueOf(String name)Returns the enum constant of this type with the specified name.static WellKnownFolderName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Calendar
public static final WellKnownFolderName Calendar
The Calendar.
-
Contacts
public static final WellKnownFolderName Contacts
The Contacts.
-
ExternalContacts
public static final WellKnownFolderName ExternalContacts
The External Contacts.
-
DeletedItems
public static final WellKnownFolderName DeletedItems
The Deleted item.
-
Drafts
public static final WellKnownFolderName Drafts
The Drafts.
-
Inbox
public static final WellKnownFolderName Inbox
The Inbox.
-
Journal
public static final WellKnownFolderName Journal
The Journal.
-
Notes
public static final WellKnownFolderName Notes
The Notes.
-
Outbox
public static final WellKnownFolderName Outbox
The Outbox.
-
SentItems
public static final WellKnownFolderName SentItems
The Sent item.
-
Tasks
public static final WellKnownFolderName Tasks
The Tasks.
-
MsgFolderRoot
public static final WellKnownFolderName MsgFolderRoot
The Msg folder root.
-
PublicFoldersRoot
public static final WellKnownFolderName PublicFoldersRoot
The Public folder root.
-
Root
public static final WellKnownFolderName Root
The Root.
-
JunkEmail
public static final WellKnownFolderName JunkEmail
The Junk email.
-
SearchFolders
public static final WellKnownFolderName SearchFolders
The Search folder.
-
VoiceMail
public static final WellKnownFolderName VoiceMail
The Voice mail.
-
RecoverableItemsRoot
public static final WellKnownFolderName RecoverableItemsRoot
The Dumpster 2.0 root folder.
-
RecoverableItemsDeletions
public static final WellKnownFolderName RecoverableItemsDeletions
The Dumpster 2.0 soft deletions folder.
-
RecoverableItemsVersions
public static final WellKnownFolderName RecoverableItemsVersions
The Dumpster 2.0 versions folder.
-
RecoverableItemsPurges
public static final WellKnownFolderName RecoverableItemsPurges
The Dumpster 2.0 hard deletions folder.
-
ArchiveRoot
public static final WellKnownFolderName ArchiveRoot
The root of the archive mailbox.
-
ArchiveMsgFolderRoot
public static final WellKnownFolderName ArchiveMsgFolderRoot
The message folder root in the archive mailbox.
-
ArchiveDeletedItems
public static final WellKnownFolderName ArchiveDeletedItems
The Deleted Items folder in the archive mailbox.
-
ArchiveRecoverableItemsRoot
public static final WellKnownFolderName ArchiveRecoverableItemsRoot
The Dumpster 2.0 root folder in the archive mailbox.
-
ArchiveRecoverableItemsDeletions
public static final WellKnownFolderName ArchiveRecoverableItemsDeletions
The Dumpster 2.0 soft deletions folder in the archive mailbox.
-
ArchiveRecoverableItemsVersions
public static final WellKnownFolderName ArchiveRecoverableItemsVersions
The Dumpster 2.0 versions folder in the archive mailbox.
-
ArchiveRecoverableItemsPurges
public static final WellKnownFolderName ArchiveRecoverableItemsPurges
The Dumpster 2.0 hard deletions folder in the archive mailbox.
-
-
Method Detail
-
values
public static WellKnownFolderName[] 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 (WellKnownFolderName c : WellKnownFolderName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WellKnownFolderName 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
-
-