public static enum AddressParser.ParseHint extends java.lang.Enum<AddressParser.ParseHint>
Enum Constant and Description |
---|
NO_ADDRESSEE
Indicates the address doesn't contain an addressee
|
NO_CITY
Indicates the address doesn't contain a city
|
NO_COUNTRY
Indicates the address doesn't contain a country
|
NO_COUNTY
Indicates the address doesn't contain a county
|
NO_STATE
Indicates the address doesn't contain a state
|
NO_STREET
Indicates the address doesn't contain a street
|
NO_SUITE_OR_APARTMENT
Indicates the address doesn't contain a suite / apartment number
|
NO_ZIP
Indicates the address doesn't contain a zip
|
Modifier and Type | Method and Description |
---|---|
static AddressParser.ParseHint |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AddressParser.ParseHint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AddressParser.ParseHint NO_ADDRESSEE
public static final AddressParser.ParseHint NO_COUNTRY
public static final AddressParser.ParseHint NO_COUNTY
public static final AddressParser.ParseHint NO_CITY
public static final AddressParser.ParseHint NO_STATE
public static final AddressParser.ParseHint NO_ZIP
public static final AddressParser.ParseHint NO_STREET
public static final AddressParser.ParseHint NO_SUITE_OR_APARTMENT
public static AddressParser.ParseHint[] values()
for (AddressParser.ParseHint c : AddressParser.ParseHint.values()) System.out.println(c);
public static AddressParser.ParseHint 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