public enum FileAsMapping extends java.lang.Enum<FileAsMapping>
| Enum Constant and Description |
|---|
COMPANY
Indicates that the company name is displayed.
|
COMPANY_LAST_COMMA_FIRST
Indicates that the contact is displayed as the company name, the last name, a comma, and the first name.
|
COMPANY_LAST_FIRST
Indicates that the contact is displayed as the company name, the last name, and the first name.
|
COMPANY_LAST_SPACE_FIRST
Indicates that the contact is displayed as the company name, the last name, a space, and the first name.
|
FIRST_SPACE_LAST
Indicates that the contact is displayed as the first name followed by a space and the last name.
|
LAST_COMMA_FIRST
Indicates that the contact is displayed as the last name followed by a comma and the first name.
|
LAST_COMMA_FIRST_COMPANY
Indicates that the contact is displayed as the last name, a comma, the first name, and the company name.
|
LAST_FIRST
Indicates that the contact is displayed as the last name, the first name, and the company name.
|
LAST_FIRST_COMPANY
Indicates that the contact is displayed as the last name, the first name, and the company name.
|
LAST_FIRST_SUFFIX
Indicates that the contact is displayed as the last name, the first name, and the suffix for the contact.
|
LAST_SPACE_FIRST
Indicates that the contact is displayed as the last name, followed by a space and the first name.
|
LAST_SPACE_FIRST_COMPANY
Indicates that the contact is displayed as the last name, a space, the first name, and the company name.
|
NONE
Indicates that the FileAs value is not constructed from other contact's properties, but is represented by a string, saved "as is".
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
public static final FileAsMapping LAST_COMMA_FIRST
public static final FileAsMapping FIRST_SPACE_LAST
public static final FileAsMapping COMPANY
public static final FileAsMapping LAST_COMMA_FIRST_COMPANY
public static final FileAsMapping COMPANY_LAST_FIRST
public static final FileAsMapping LAST_FIRST
public static final FileAsMapping LAST_FIRST_COMPANY
public static final FileAsMapping COMPANY_LAST_COMMA_FIRST
public static final FileAsMapping LAST_FIRST_SUFFIX
public static final FileAsMapping LAST_SPACE_FIRST_COMPANY
public static final FileAsMapping COMPANY_LAST_SPACE_FIRST
public static final FileAsMapping LAST_SPACE_FIRST
public static final FileAsMapping NONE
public static FileAsMapping[] values()
for (FileAsMapping c : FileAsMapping.values()) System.out.println(c);
public static FileAsMapping valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null