microsoft.exchange.webservices.data
Enum FileAsMapping

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

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

Defines the way the FileAs property of a contact is automatically formatted.


Enum Constant Summary
Company
          The Company.
CompanySurnameCommaGivenName
          The Company surname comma given name.
CompanySurnameGivenName
          The Company surname given name.
CompanySurnameSpaceGivenName
          The Company surname space given name.
DisplayName
          The Display name.
Empty
          The Empty.
GivenName
          The Given name.
GivenNameSpaceSurname
          The Given name space surname.
None
          The None.
Surname
          The Surname.
SurnameCommaGivenName
          The Surname comma given name.
SurnameCommaGivenNameCompany
          The Surname comma given name company.
SurnameGivenName
          The Surname given name.
SurnameGivenNameCompany
          The Surname given name company.
SurnameGivenNameMiddleSuffix
          The Surname given name middle suffix.
SurnameGivenNameSuffix
          The Surname given name suffix.
SurnameSpaceGivenName
          The Surname space given name.
SurnameSpaceGivenNameCompany
          The Surname space given name company.
 
Method Summary
static FileAsMapping valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static FileAsMapping[] 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 FileAsMapping None
The None.


SurnameCommaGivenName

public static final FileAsMapping SurnameCommaGivenName
The Surname comma given name.


GivenNameSpaceSurname

public static final FileAsMapping GivenNameSpaceSurname
The Given name space surname.


Company

public static final FileAsMapping Company
The Company.


SurnameCommaGivenNameCompany

public static final FileAsMapping SurnameCommaGivenNameCompany
The Surname comma given name company.


CompanySurnameGivenName

public static final FileAsMapping CompanySurnameGivenName
The Company surname given name.


SurnameGivenName

public static final FileAsMapping SurnameGivenName
The Surname given name.


SurnameGivenNameCompany

public static final FileAsMapping SurnameGivenNameCompany
The Surname given name company.


CompanySurnameCommaGivenName

public static final FileAsMapping CompanySurnameCommaGivenName
The Company surname comma given name.


SurnameGivenNameSuffix

public static final FileAsMapping SurnameGivenNameSuffix
The Surname given name suffix.


SurnameSpaceGivenNameCompany

public static final FileAsMapping SurnameSpaceGivenNameCompany
The Surname space given name company.


CompanySurnameSpaceGivenName

public static final FileAsMapping CompanySurnameSpaceGivenName
The Company surname space given name.


SurnameSpaceGivenName

public static final FileAsMapping SurnameSpaceGivenName
The Surname space given name.


DisplayName

public static final FileAsMapping DisplayName
The Display name.


GivenName

public static final FileAsMapping GivenName
The Given name.


SurnameGivenNameMiddleSuffix

public static final FileAsMapping SurnameGivenNameMiddleSuffix
The Surname given name middle suffix.


Surname

public static final FileAsMapping Surname
The Surname.


Empty

public static final FileAsMapping Empty
The Empty.

Method Detail

values

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

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

valueOf

public static FileAsMapping 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