public enum AddressType extends java.lang.Enum<AddressType>
Address type
Enum Constant and Description |
---|
COMBINED_ELEMENTS
Combined address elements
|
CONFLICTING
Conflicting
|
STRUCTURED
Structured address
|
UNDETERMINED
Undetermined
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static AddressType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AddressType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AddressType UNDETERMINED
Undetermined
public static final AddressType STRUCTURED
Structured address
public static final AddressType COMBINED_ELEMENTS
Combined address elements
public static final AddressType CONFLICTING
Conflicting
public static AddressType[] values()
for (AddressType c : AddressType.values()) System.out.println(c);
public static AddressType 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 int getValue()