public enum RefundStatus extends Enum<RefundStatus>
| Enum Constant and Description |
|---|
ABNORMAL
退款异常.
|
CLOSED
退款关闭.
|
SUCCESS
退款成功.
|
| Modifier and Type | Method and Description |
|---|---|
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 ABNORMAL
public static final RefundStatus CLOSED
public static final RefundStatus SUCCESS
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 nullCopyright © 2023. All rights reserved.