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