public enum RefundState extends java.lang.Enum<RefundState>
| Enum Constant and Description |
|---|
REFUND_CLOSE |
REFUND_FAIL |
REFUND_PROCESS |
REFUND_SUCCESS |
| Modifier and Type | Method and Description |
|---|---|
static RefundState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RefundState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RefundState REFUND_PROCESS
public static final RefundState REFUND_SUCCESS
public static final RefundState REFUND_FAIL
public static final RefundState REFUND_CLOSE
public static RefundState[] values()
for (RefundState c : RefundState.values()) System.out.println(c);
public static RefundState valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null