public enum AddressFieldType extends java.lang.Enum<AddressFieldType>
| Enum Constant and Description |
|---|
AREA |
CITY |
COUNTRY |
FLAT |
HOUSE |
HOUSING |
LOCALITY |
POSTCODE |
REGION |
STREET |
| Modifier and Type | Method and Description |
|---|---|
static AddressFieldType |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static AddressFieldType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AddressFieldType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AddressFieldType POSTCODE
public static final AddressFieldType COUNTRY
public static final AddressFieldType REGION
public static final AddressFieldType AREA
public static final AddressFieldType LOCALITY
public static final AddressFieldType CITY
public static final AddressFieldType STREET
public static final AddressFieldType HOUSE
public static final AddressFieldType HOUSING
public static final AddressFieldType FLAT
public static AddressFieldType[] values()
for (AddressFieldType c : AddressFieldType.values()) System.out.println(c);
public static AddressFieldType 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 nullpublic java.lang.String value()
public static AddressFieldType fromValue(java.lang.String v)