public enum IndexedPropertyPathUri extends java.lang.Enum<IndexedPropertyPathUri>
| Enum Constant and Description |
|---|
CITY
Represents the city of a contact.
|
COUNTRY
Represents the country of a contact.
|
EMAIL_ADDRESS
Represents the e-mail address of a contact.
|
INSTANT_MESSENGER_ADDRESS
Represents the instant messaging address of a contact.
|
INTERNET_MESSAGE_HEADER
Represents the message header of an item.
|
PHONE_NUMBER
Represents the phone number of a contact.
|
POSTAL_CODE
Represents the postal code of a contact.
|
STATE
Represents the state of a contact.
|
STREET
Represents the street address of a contact.
|
| Modifier and Type | Method and Description |
|---|---|
static IndexedPropertyPathUri |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IndexedPropertyPathUri[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexedPropertyPathUri INTERNET_MESSAGE_HEADER
public static final IndexedPropertyPathUri INSTANT_MESSENGER_ADDRESS
public static final IndexedPropertyPathUri STREET
public static final IndexedPropertyPathUri CITY
public static final IndexedPropertyPathUri STATE
public static final IndexedPropertyPathUri COUNTRY
public static final IndexedPropertyPathUri POSTAL_CODE
public static final IndexedPropertyPathUri PHONE_NUMBER
public static final IndexedPropertyPathUri EMAIL_ADDRESS
public static IndexedPropertyPathUri[] values()
for (IndexedPropertyPathUri c : IndexedPropertyPathUri.values()) System.out.println(c);
public static IndexedPropertyPathUri 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