public static enum Storefront.DeliveryMethodType extends java.lang.Enum<Storefront.DeliveryMethodType>
| Enum Constant and Description |
|---|
LOCAL
Local Delivery.
|
NONE
None.
|
PICK_UP
Local Pickup.
|
PICKUP_POINT
Shipping to a Pickup Point.
|
RETAIL
Retail.
|
SHIPPING
Shipping.
|
UNKNOWN_VALUE |
| Modifier and Type | Method and Description |
|---|---|
static Storefront.DeliveryMethodType |
fromGraphQl(java.lang.String value) |
java.lang.String |
toString() |
static Storefront.DeliveryMethodType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Storefront.DeliveryMethodType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Storefront.DeliveryMethodType LOCAL
public static final Storefront.DeliveryMethodType NONE
public static final Storefront.DeliveryMethodType PICKUP_POINT
public static final Storefront.DeliveryMethodType PICK_UP
public static final Storefront.DeliveryMethodType RETAIL
public static final Storefront.DeliveryMethodType SHIPPING
public static final Storefront.DeliveryMethodType UNKNOWN_VALUE
public static Storefront.DeliveryMethodType[] values()
for (Storefront.DeliveryMethodType c : Storefront.DeliveryMethodType.values()) System.out.println(c);
public static Storefront.DeliveryMethodType 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.DeliveryMethodType fromGraphQl(java.lang.String value)
public java.lang.String toString()
toString in class java.lang.Enum<Storefront.DeliveryMethodType>