public enum ShippingDetailsMethods extends java.lang.Enum<ShippingDetailsMethods>
| Enum Constant and Description |
|---|
BILLING_ADDRESS |
DIGITAL |
OTHER_ADDRESS |
PICK_UP |
| Modifier and Type | Method and Description |
|---|---|
static ShippingDetailsMethods |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ShippingDetailsMethods[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="Digital") public static final ShippingDetailsMethods DIGITAL
@SerializedName(value="PickUp") public static final ShippingDetailsMethods PICK_UP
@SerializedName(value="BillingAddress") public static final ShippingDetailsMethods BILLING_ADDRESS
@SerializedName(value="OtherAddress") public static final ShippingDetailsMethods OTHER_ADDRESS
public static ShippingDetailsMethods[] values()
for (ShippingDetailsMethods c : ShippingDetailsMethods.values()) System.out.println(c);
public static ShippingDetailsMethods 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