public enum RefundResult extends Enum<RefundResult>
| Enum Constant and Description |
|---|
ABNORMAL
退款异常,退款到银行发现用户的卡作废或者冻结了,导致原路退款银行卡失败
|
CLOSE
退款关闭
|
PROCESSING
退款处理中
|
SUCCESS
退款成功
|
| Modifier and Type | Method and Description |
|---|---|
static RefundResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RefundResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RefundResult SUCCESS
public static final RefundResult CLOSE
public static final RefundResult PROCESSING
public static final RefundResult ABNORMAL
public static RefundResult[] values()
for (RefundResult c : RefundResult.values()) System.out.println(c);
public static RefundResult 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.