public enum QcAddressComplete extends java.lang.Enum<QcAddressComplete>
| Modifier and Type | Class and Description |
|---|---|
static class |
QcAddressComplete.PostalSuitability
Address suitability for postal services
|
| Enum Constant and Description |
|---|
ADDRESS_COMPLETE |
ADDRESS_INCOMPLETE |
FOREIGN_ADDRESS |
HOUSE_NOT_IN_FIAS |
NO_CITY |
NO_FLAT |
NO_HOUSE |
NO_REGION |
NO_STREET |
POSTAL_BOX |
UNKNOWN
Catch-all constant for unrecognized response contents
|
VERIFY_PARSING |
| Modifier and Type | Method and Description |
|---|---|
QcAddressComplete.PostalSuitability |
getPostalSuitability()
Get address's postal suitability level.
|
static QcAddressComplete |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QcAddressComplete[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QcAddressComplete ADDRESS_COMPLETE
public static final QcAddressComplete NO_REGION
public static final QcAddressComplete NO_CITY
public static final QcAddressComplete NO_STREET
public static final QcAddressComplete NO_HOUSE
public static final QcAddressComplete NO_FLAT
public static final QcAddressComplete ADDRESS_INCOMPLETE
public static final QcAddressComplete FOREIGN_ADDRESS
public static final QcAddressComplete POSTAL_BOX
public static final QcAddressComplete VERIFY_PARSING
public static final QcAddressComplete HOUSE_NOT_IN_FIAS
public static final QcAddressComplete UNKNOWN
public static QcAddressComplete[] values()
for (QcAddressComplete c : QcAddressComplete.values()) System.out.println(c);
public static QcAddressComplete 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@NonNull public QcAddressComplete.PostalSuitability getPostalSuitability()