|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<RefundStatus>
com.foxinmy.weixin4j.type.mch.RefundStatus
public enum RefundStatus
退款状态
| Enum Constant Summary | |
|---|---|
CHANGE
转入代发,退款到银行发现用户的卡作废或者冻结了,导致原路退款银行卡失败,资金回流到商户的现金帐号,需要商户人工干预,通过线下或者财付通转 账的方式进行退款。 |
|
FAIL
退款失败 |
|
NOTSURE
未确定,需要商户 原退款单号重新发起 |
|
PROCESSING
退款处理中 |
|
SUCCESS
退款成功 |
|
| Method Summary | |
|---|---|
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. |
| Methods inherited from class java.lang.Enum |
|---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
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
| Method Detail |
|---|
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 name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||