public static enum PaymentRequestOptions.ShippingType extends Enum<PaymentRequestOptions.ShippingType>
| Modifier and Type | Method and Description |
|---|---|
static PaymentRequestOptions.ShippingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentRequestOptions.ShippingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentRequestOptions.ShippingType shipping
public static final PaymentRequestOptions.ShippingType delivery
public static final PaymentRequestOptions.ShippingType pickup
public static PaymentRequestOptions.ShippingType[] values()
for (PaymentRequestOptions.ShippingType c : PaymentRequestOptions.ShippingType.values()) System.out.println(c);
public static PaymentRequestOptions.ShippingType 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 nullCopyright © 2020 XDEV Software Corp.. All rights reserved.