public static enum Storefront.DeliveryAddressValidationStrategy extends java.lang.Enum<Storefront.DeliveryAddressValidationStrategy>
| Enum Constant and Description |
|---|
COUNTRY_CODE_ONLY
Only the country code is validated.
|
STRICT
Strict validation is performed, i.e.
|
UNKNOWN_VALUE |
| Modifier and Type | Method and Description |
|---|---|
static Storefront.DeliveryAddressValidationStrategy |
fromGraphQl(java.lang.String value) |
java.lang.String |
toString() |
static Storefront.DeliveryAddressValidationStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Storefront.DeliveryAddressValidationStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Storefront.DeliveryAddressValidationStrategy COUNTRY_CODE_ONLY
public static final Storefront.DeliveryAddressValidationStrategy STRICT
public static final Storefront.DeliveryAddressValidationStrategy UNKNOWN_VALUE
public static Storefront.DeliveryAddressValidationStrategy[] values()
for (Storefront.DeliveryAddressValidationStrategy c : Storefront.DeliveryAddressValidationStrategy.values()) System.out.println(c);
public static Storefront.DeliveryAddressValidationStrategy 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 static Storefront.DeliveryAddressValidationStrategy fromGraphQl(java.lang.String value)
public java.lang.String toString()
toString in class java.lang.Enum<Storefront.DeliveryAddressValidationStrategy>