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