public enum AdditionalFieldKeys extends Enum<AdditionalFieldKeys>
Enum Constant and Description |
---|
AREA_NAME_1
Used to represent the largest geographic division in an area, such as a state, province, or
region
|
AREA_NAME_2
Used to represent the secondary geographic division in an area, such as a county or district.
|
AREA_NAME_3
Used to represent the city or town name
|
AREA_NAME_4
Represents the smallest common geographic division in an area, such as a city subdivision or
locality
|
MAIN_ADDRESS
Represents the name of the street
|
POST_ADDRESS
Contains any additional information that may appear after the street name
|
POST_CODE_1
Represents the main postal code.
|
POST_CODE_2
Represents the secondary postal code, if used.
|
POST_DIRECTIONAL
Contains the type when it appears before the street name, e.g., "Main St SW"
|
POST_THOROUGHFARE_TYPE
Contains the type when it appears after the street name, e.g., "Main St"
|
PRE_ADDRESS
Contains any additional information that may appear before the base street name
|
PRE_DIRECTIONAL
Contains the type when it appears before the street name, e.g., "West Main St"
|
PRE_THOROUGHFARE_TYPE
Contains the type when it appears before the street name, e.g., "Via Veneto"
|
Modifier and Type | Method and Description |
---|---|
static AdditionalFieldKeys |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AdditionalFieldKeys[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdditionalFieldKeys AREA_NAME_1
public static final AdditionalFieldKeys AREA_NAME_2
public static final AdditionalFieldKeys AREA_NAME_3
public static final AdditionalFieldKeys AREA_NAME_4
public static final AdditionalFieldKeys POST_CODE_1
public static final AdditionalFieldKeys POST_CODE_2
public static final AdditionalFieldKeys MAIN_ADDRESS
public static final AdditionalFieldKeys PRE_ADDRESS
public static final AdditionalFieldKeys POST_ADDRESS
public static final AdditionalFieldKeys PRE_THOROUGHFARE_TYPE
public static final AdditionalFieldKeys POST_THOROUGHFARE_TYPE
public static final AdditionalFieldKeys PRE_DIRECTIONAL
public static final AdditionalFieldKeys POST_DIRECTIONAL
public static AdditionalFieldKeys[] values()
for (AdditionalFieldKeys c : AdditionalFieldKeys.values()) System.out.println(c);
public static AdditionalFieldKeys 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 © 2024. All rights reserved.