public enum RefundMethod extends Enum<RefundMethod>
| Enum Constant and Description |
|---|
all_credit |
all_transaction |
credit_first |
transaction_first |
| Modifier and Type | Method and Description |
|---|---|
static RefundMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RefundMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RefundMethod transaction_first
public static final RefundMethod credit_first
public static final RefundMethod all_transaction
public static final RefundMethod all_credit
public static RefundMethod[] values()
for (RefundMethod c : RefundMethod.values()) System.out.println(c);
public static RefundMethod 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 © 2012-2020. All Rights Reserved.