public enum PaymentCategoryType extends Enum<PaymentCategoryType>
| Enum Constant and Description |
|---|
BOPIS |
INTERNATIONALSHIPPING |
LOCALDELIVERY |
PUDO |
| Modifier and Type | Method and Description |
|---|---|
static PaymentCategoryType |
fromValue(String v) |
String |
getValue() |
static PaymentCategoryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentCategoryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentCategoryType INTERNATIONALSHIPPING
public static final PaymentCategoryType LOCALDELIVERY
public static final PaymentCategoryType BOPIS
public static final PaymentCategoryType PUDO
public static PaymentCategoryType[] values()
for (PaymentCategoryType c : PaymentCategoryType.values()) System.out.println(c);
public static PaymentCategoryType 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 getValue()
public static PaymentCategoryType fromValue(String v)
Copyright © 2017. All Rights Reserved.