Enum FileAsMapping
- java.lang.Object
-
- java.lang.Enum<FileAsMapping>
-
- microsoft.exchange.webservices.data.core.enumeration.service.FileAsMapping
-
- All Implemented Interfaces:
Serializable,Comparable<FileAsMapping>
public enum FileAsMapping extends Enum<FileAsMapping>
Defines the way the FileAs property of a contact is automatically formatted.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CompanyThe Company.CompanySurnameCommaGivenNameThe Company surname comma given name.CompanySurnameGivenNameThe Company surname given name.CompanySurnameSpaceGivenNameThe Company surname space given name.DisplayNameThe Display name.EmptyThe Empty.GivenNameThe Given name.GivenNameSpaceSurnameThe Given name space surname.NoneThe None.SurnameThe Surname.SurnameCommaGivenNameThe Surname comma given name.SurnameCommaGivenNameCompanyThe Surname comma given name company.SurnameGivenNameThe Surname given name.SurnameGivenNameCompanyThe Surname given name company.SurnameGivenNameMiddleSuffixThe Surname given name middle suffix.SurnameGivenNameSuffixThe Surname given name suffix.SurnameSpaceGivenNameThe Surname space given name.SurnameSpaceGivenNameCompanyThe Surname space given name company.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FileAsMappingvalueOf(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.
-
-
-
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(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
-
-