public static enum Storefront.PreferenceDeliveryMethodType extends java.lang.Enum<Storefront.PreferenceDeliveryMethodType>
| Enum Constant and Description |
|---|
PICK_UP
A delivery method used to let buyers receive items directly from a specific location within an area.
|
PICKUP_POINT
A delivery method used to let buyers collect purchases at designated locations like parcel lockers.
|
SHIPPING
A delivery method used to send items directly to a buyer’s specified address.
|
UNKNOWN_VALUE |
| Modifier and Type | Method and Description |
|---|---|
static Storefront.PreferenceDeliveryMethodType |
fromGraphQl(java.lang.String value) |
java.lang.String |
toString() |
static Storefront.PreferenceDeliveryMethodType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Storefront.PreferenceDeliveryMethodType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Storefront.PreferenceDeliveryMethodType PICKUP_POINT
public static final Storefront.PreferenceDeliveryMethodType PICK_UP
public static final Storefront.PreferenceDeliveryMethodType SHIPPING
public static final Storefront.PreferenceDeliveryMethodType UNKNOWN_VALUE
public static Storefront.PreferenceDeliveryMethodType[] values()
for (Storefront.PreferenceDeliveryMethodType c : Storefront.PreferenceDeliveryMethodType.values()) System.out.println(c);
public static Storefront.PreferenceDeliveryMethodType 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.PreferenceDeliveryMethodType fromGraphQl(java.lang.String value)
public java.lang.String toString()
toString in class java.lang.Enum<Storefront.PreferenceDeliveryMethodType>