public enum RefundChannel extends Enum<RefundChannel>
Description:
| 枚举常量和说明 |
|---|
BALANCE
退回到余额
|
BANK
银行
|
ORIGINAL
原路退款
|
OTHER_BALANCE
原账户异常退到其他余额账户
|
OTHER_BANKCARD
原银行卡异常退到其他银行卡
|
TENPAY
财付通
|
| 限定符和类型 | 方法和说明 |
|---|---|
static RefundChannel |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static RefundChannel[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final RefundChannel ORIGINAL
public static final RefundChannel BALANCE
public static final RefundChannel TENPAY
public static final RefundChannel BANK
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 - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2019. All rights reserved.