public enum RefundChannel extends Enum<RefundChannel>
| Enum Constant and Description |
|---|
BALANCE
退回到余额
|
ORIGINAL
原路退款
|
OTHER_BALANCE
原账户异常退到其他余额账户
|
OTHER_BANKCARD
原银行卡异常退到其他银行卡
|
| Modifier and Type | Method and Description |
|---|---|
static RefundChannel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RefundChannel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RefundChannel ORIGINAL
public static final RefundChannel BALANCE
public static final RefundChannel OTHER_BALANCE
public static final RefundChannel OTHER_BANKCARD
public static RefundChannel[] values()
for (RefundChannel c : RefundChannel.values()) System.out.println(c);
public static RefundChannel 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 © 2023. All rights reserved.