public enum RefundStatus extends Enum<RefundStatus>
| Enum Constant and Description |
|---|
CHANGE
转入代发,退款到银行发现用户的卡作废或者冻结了,导致原路退款银行卡失败,资金回流到商户的现金帐号,需要商户人工干预,通过线下或者财付通转账的方式进行退款。
|
FAIL
退款失败
|
NOTSURE
未确定,需要商户原退款单号重新发起
|
PROCESSING
退款处理中
|
SUCCESS
退款成功
|
| Modifier and Type | Method and Description |
|---|---|
static RefundStatus |
from(String s) |
String |
value() |
static RefundStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RefundStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
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 - 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 nullpublic String value()
public static RefundStatus from(String s)
Copyright © 2018. All rights reserved.