com.microsoft.exchange.types
Enum DistinguishedFolderIdNameType

java.lang.Object
  extended by java.lang.Enum<DistinguishedFolderIdNameType>
      extended by com.microsoft.exchange.types.DistinguishedFolderIdNameType
All Implemented Interfaces:
Serializable, Comparable<DistinguishedFolderIdNameType>

public enum DistinguishedFolderIdNameType
extends Enum<DistinguishedFolderIdNameType>

Java class for DistinguishedFolderIdNameType.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="DistinguishedFolderIdNameType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="calendar"/>
     <enumeration value="contacts"/>
     <enumeration value="deleteditems"/>
     <enumeration value="drafts"/>
     <enumeration value="inbox"/>
     <enumeration value="journal"/>
     <enumeration value="notes"/>
     <enumeration value="outbox"/>
     <enumeration value="sentitems"/>
     <enumeration value="tasks"/>
     <enumeration value="msgfolderroot"/>
     <enumeration value="publicfoldersroot"/>
     <enumeration value="root"/>
     <enumeration value="junkemail"/>
     <enumeration value="searchfolders"/>
     <enumeration value="voicemail"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
CALENDAR
           
CONTACTS
           
DELETEDITEMS
           
DRAFTS
           
INBOX
           
JOURNAL
           
JUNKEMAIL
           
MSGFOLDERROOT
           
NOTES
           
OUTBOX
           
PUBLICFOLDERSROOT
           
ROOT
           
SEARCHFOLDERS
           
SENTITEMS
           
TASKS
           
VOICEMAIL
           
 
Method Summary
static DistinguishedFolderIdNameType fromValue(String v)
           
 String value()
           
static DistinguishedFolderIdNameType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DistinguishedFolderIdNameType[] 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

CALENDAR

public static final DistinguishedFolderIdNameType CALENDAR

CONTACTS

public static final DistinguishedFolderIdNameType CONTACTS

DELETEDITEMS

public static final DistinguishedFolderIdNameType DELETEDITEMS

DRAFTS

public static final DistinguishedFolderIdNameType DRAFTS

INBOX

public static final DistinguishedFolderIdNameType INBOX

JOURNAL

public static final DistinguishedFolderIdNameType JOURNAL

NOTES

public static final DistinguishedFolderIdNameType NOTES

OUTBOX

public static final DistinguishedFolderIdNameType OUTBOX

SENTITEMS

public static final DistinguishedFolderIdNameType SENTITEMS

TASKS

public static final DistinguishedFolderIdNameType TASKS

MSGFOLDERROOT

public static final DistinguishedFolderIdNameType MSGFOLDERROOT

PUBLICFOLDERSROOT

public static final DistinguishedFolderIdNameType PUBLICFOLDERSROOT

ROOT

public static final DistinguishedFolderIdNameType ROOT

JUNKEMAIL

public static final DistinguishedFolderIdNameType JUNKEMAIL

SEARCHFOLDERS

public static final DistinguishedFolderIdNameType SEARCHFOLDERS

VOICEMAIL

public static final DistinguishedFolderIdNameType VOICEMAIL
Method Detail

values

public static DistinguishedFolderIdNameType[] 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 (DistinguishedFolderIdNameType c : DistinguishedFolderIdNameType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static DistinguishedFolderIdNameType 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 name
NullPointerException - if the argument is null

value

public String value()

fromValue

public static DistinguishedFolderIdNameType fromValue(String v)


Copyright © 2012 Jasig. All Rights Reserved.