public enum StateDescription extends Enum<StateDescription>
| Enum Constant and Description |
|---|
MCH_COMPLETE
商户完结
|
USER_CONFIRM
用户确认
|
| Modifier and Type | Method and Description |
|---|---|
static StateDescription |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StateDescription[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateDescription USER_CONFIRM
public static final StateDescription MCH_COMPLETE
public static StateDescription[] values()
for (StateDescription c : StateDescription.values()) System.out.println(c);
public static StateDescription 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.