public static enum TransactionAddressRequest.ShippingMethod extends Enum<TransactionAddressRequest.ShippingMethod>
| Enum Constant and Description |
|---|
ELECTRONIC |
GROUND |
NEXT_DAY |
PRIORITY |
SAME_DAY |
SHIP_TO_STORE |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static TransactionAddressRequest.ShippingMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransactionAddressRequest.ShippingMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionAddressRequest.ShippingMethod SAME_DAY
public static final TransactionAddressRequest.ShippingMethod NEXT_DAY
public static final TransactionAddressRequest.ShippingMethod PRIORITY
public static final TransactionAddressRequest.ShippingMethod GROUND
public static final TransactionAddressRequest.ShippingMethod ELECTRONIC
public static final TransactionAddressRequest.ShippingMethod SHIP_TO_STORE
private final String name
public static TransactionAddressRequest.ShippingMethod[] values()
for (TransactionAddressRequest.ShippingMethod c : TransactionAddressRequest.ShippingMethod.values()) System.out.println(c);
public static TransactionAddressRequest.ShippingMethod valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<TransactionAddressRequest.ShippingMethod>Copyright © 2013-2021. All Rights Reserved.