public enum PayScoreOrderState extends Enum<PayScoreOrderState>
Enum Constant and Description |
---|
CREATED
商户已创建服务订单
|
DOING
服务订单进行中
|
DONE
服务订单完成
|
EXPIRED
服务订单已失效
|
REVOKED
商户取消服务订单
|
Modifier and Type | Method and Description |
---|---|
static PayScoreOrderState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PayScoreOrderState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PayScoreOrderState CREATED
public static final PayScoreOrderState DOING
public static final PayScoreOrderState DONE
public static final PayScoreOrderState REVOKED
public static final PayScoreOrderState EXPIRED
public static PayScoreOrderState[] values()
for (PayScoreOrderState c : PayScoreOrderState.values()) System.out.println(c);
public static PayScoreOrderState 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 © 2025. All rights reserved.