public static enum AddressRecord.Label extends Enum<AddressRecord.Label>
Enum Constant and Description |
---|
ADDRESS |
CITY |
COMPANY |
COUNTRY |
CUSTOM1 |
CUSTOM2 |
CUSTOM3 |
CUSTOM4 |
FIRST_NAME |
NAME |
NOTE |
PHONE1 |
PHONE2 |
PHONE3 |
PHONE4 |
PHONE5 |
PHONE6 |
PHONE7 |
PHONE8 |
STATE |
TITLE |
ZIP |
Modifier and Type | Method and Description |
---|---|
static AddressRecord.Label |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AddressRecord.Label[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AddressRecord.Label NAME
public static final AddressRecord.Label FIRST_NAME
public static final AddressRecord.Label COMPANY
public static final AddressRecord.Label PHONE1
public static final AddressRecord.Label PHONE2
public static final AddressRecord.Label PHONE3
public static final AddressRecord.Label PHONE4
public static final AddressRecord.Label PHONE5
public static final AddressRecord.Label ADDRESS
public static final AddressRecord.Label CITY
public static final AddressRecord.Label STATE
public static final AddressRecord.Label ZIP
public static final AddressRecord.Label COUNTRY
public static final AddressRecord.Label TITLE
public static final AddressRecord.Label CUSTOM1
public static final AddressRecord.Label CUSTOM2
public static final AddressRecord.Label CUSTOM3
public static final AddressRecord.Label CUSTOM4
public static final AddressRecord.Label NOTE
public static final AddressRecord.Label PHONE6
public static final AddressRecord.Label PHONE7
public static final AddressRecord.Label PHONE8
public static AddressRecord.Label[] values()
for (AddressRecord.Label c : AddressRecord.Label.values()) System.out.println(c);
public static AddressRecord.Label 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.