public enum RefundStatus extends Enum<RefundStatus>
Description:
| 枚举常量和说明 |
|---|
CHANGE
转入代发,退款到银行发现用户的卡作废或者冻结了,导致原路退款银行卡失败,资金回流到商户的现金帐号,需要商户人工干预,通过线下或者财付通转
账的方式进行退款。
|
FAIL
退款失败
|
NOTSURE
未确定,需要商户 原退款单号重新发起
|
PROCESSING
退款处理中
|
SUCCESS
退款成功
|
| 限定符和类型 | 方法和说明 |
|---|---|
static RefundStatus |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static RefundStatus[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final RefundStatus SUCCESS
public static final RefundStatus FAIL
public static final RefundStatus PROCESSING
public static final RefundStatus NOTSURE
public static final RefundStatus CHANGE
public static RefundStatus[] values()
for (RefundStatus c : RefundStatus.values()) System.out.println(c);
public static RefundStatus valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2019. All rights reserved.