
com.microsoft.exchange.services.odata.model.DefaultFolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mail-calendar-contact Show documentation
Show all versions of mail-calendar-contact Show documentation
Java SDK for Office 365 Mail-Calendar-Contact services
The newest version!
package com.microsoft.exchange.services.odata.model;
import java.io.Serializable;
/**
* Holds folders that created for user by default.
*/
public enum DefaultFolder implements Serializable {
/** RootFolder */ ROOT("RootFolder"),
/** Inbox */ INBOX("Inbox"),
/** Drafts */ DRAFTS("Drafts"),
/** SentItems */ SENT("SentItems"),
/** DeletedItems */ DELETED("DeletedItems");
/** Holds actual folder name. */
private final String folderName;
/**
* Constructor.
* @param folderName folder name.
*/
DefaultFolder(String folderName) {
this.folderName = folderName;
}
/**
* Gets the name of this folder.
* @return folder name.
*/
public String getName() {
return folderName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy