public enum UnfinishedReason extends Enum<UnfinishedReason>
当订单守约状态为ContractStatus.UNFINISHED,返回此字段
| Enum Constant and Description |
|---|
DUE_TO_QUIT
到期未完成约
|
EARLY_QUIT
提前退出约定
|
| Modifier and Type | Method and Description |
|---|---|
static UnfinishedReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnfinishedReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnfinishedReason DUE_TO_QUIT
public static final UnfinishedReason EARLY_QUIT
public static UnfinishedReason[] values()
for (UnfinishedReason c : UnfinishedReason.values()) System.out.println(c);
public static UnfinishedReason 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.