public enum DeliveryTimeframe extends java.lang.Enum<DeliveryTimeframe>
| Enum Constant and Description |
|---|
ELECTRONIC_DELIVERY |
OVERNIGHT |
SAME_DAY |
TWO_DAY_OR_MORE |
| Modifier and Type | Method and Description |
|---|---|
static DeliveryTimeframe |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DeliveryTimeframe[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="electronic_delivery") public static final DeliveryTimeframe ELECTRONIC_DELIVERY
@SerializedName(value="same_day") public static final DeliveryTimeframe SAME_DAY
@SerializedName(value="overnight") public static final DeliveryTimeframe OVERNIGHT
@SerializedName(value="two_day_or_more") public static final DeliveryTimeframe TWO_DAY_OR_MORE
public static DeliveryTimeframe[] values()
for (DeliveryTimeframe c : DeliveryTimeframe.values()) System.out.println(c);
public static DeliveryTimeframe 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