public static enum AddressRecord.Field extends Enum<AddressRecord.Field>
Enum Constant and Description |
---|
ADDRESS |
CITY |
COMPANY |
COUNTRY |
CUSTOM1 |
CUSTOM2 |
CUSTOM3 |
CUSTOM4 |
FIRST_NAME |
NAME |
NOTE |
PHONE1 |
PHONE2 |
PHONE3 |
PHONE4 |
PHONE5 |
STATE |
TITLE |
ZIP |
Modifier and Type | Method and Description |
---|---|
static AddressRecord.Field |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AddressRecord.Field[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AddressRecord.Field NAME
public static final AddressRecord.Field FIRST_NAME
public static final AddressRecord.Field COMPANY
public static final AddressRecord.Field PHONE1
public static final AddressRecord.Field PHONE2
public static final AddressRecord.Field PHONE3
public static final AddressRecord.Field PHONE4
public static final AddressRecord.Field PHONE5
public static final AddressRecord.Field ADDRESS
public static final AddressRecord.Field CITY
public static final AddressRecord.Field STATE
public static final AddressRecord.Field ZIP
public static final AddressRecord.Field COUNTRY
public static final AddressRecord.Field TITLE
public static final AddressRecord.Field CUSTOM1
public static final AddressRecord.Field CUSTOM2
public static final AddressRecord.Field CUSTOM3
public static final AddressRecord.Field CUSTOM4
public static final AddressRecord.Field NOTE
public static AddressRecord.Field[] values()
for (AddressRecord.Field c : AddressRecord.Field.values()) System.out.println(c);
public static AddressRecord.Field valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2009–2017. All rights reserved.