public static enum QcAddressComplete.PostalSuitability extends java.lang.Enum<QcAddressComplete.PostalSuitability>
| Enum Constant and Description |
|---|
MAYBE
Address may be used for postage, but delivery cannot be guaranteed
|
NO
Address is not suitable for postage delivery
|
YES
Address is likely suitable for postage delivery
|
| Modifier and Type | Method and Description |
|---|---|
static QcAddressComplete.PostalSuitability |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QcAddressComplete.PostalSuitability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QcAddressComplete.PostalSuitability YES
public static final QcAddressComplete.PostalSuitability MAYBE
public static final QcAddressComplete.PostalSuitability NO
public static QcAddressComplete.PostalSuitability[] values()
for (QcAddressComplete.PostalSuitability c : QcAddressComplete.PostalSuitability.values()) System.out.println(c);
public static QcAddressComplete.PostalSuitability 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