public enum ShippingIndicator extends java.lang.Enum<ShippingIndicator>
| Enum Constant and Description |
|---|
ANOTHER_ADDRESS_ON_FILE |
BILLING_ADDRESS |
DIGITAL_GOODS |
NOT_ON_FILE |
OTHER |
STORE_PICK_UP |
TRAVEL_AND_EVENT_NO_SHIPPING |
| Modifier and Type | Method and Description |
|---|---|
static ShippingIndicator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ShippingIndicator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="billing_address") public static final ShippingIndicator BILLING_ADDRESS
@SerializedName(value="another_address_on_file") public static final ShippingIndicator ANOTHER_ADDRESS_ON_FILE
@SerializedName(value="not_on_file") public static final ShippingIndicator NOT_ON_FILE
@SerializedName(value="store_pick_up") public static final ShippingIndicator STORE_PICK_UP
@SerializedName(value="digital_goods") public static final ShippingIndicator DIGITAL_GOODS
@SerializedName(value="travel_and_event_no_shipping") public static final ShippingIndicator TRAVEL_AND_EVENT_NO_SHIPPING
@SerializedName(value="other") public static final ShippingIndicator OTHER
public static ShippingIndicator[] values()
for (ShippingIndicator c : ShippingIndicator.values()) System.out.println(c);
public static ShippingIndicator 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