public enum ApplymentState extends Enum<ApplymentState>
| Enum Constant and Description |
|---|
ACCOUNT_NEED_VERIFY
待账户验证
|
AUDITING
审核中
|
CANCELED
已作废
|
CHECKING
资料校验中
|
FINISH
完成
|
FROZEN
已冻结
|
NEED_SIGN
待签约
|
REJECTED
已驳回
|
| Modifier and Type | Method and Description |
|---|---|
static ApplymentState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplymentState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplymentState CHECKING
public static final ApplymentState NEED_SIGN
public static final ApplymentState ACCOUNT_NEED_VERIFY
public static final ApplymentState FINISH
public static final ApplymentState AUDITING
public static final ApplymentState FROZEN
public static final ApplymentState REJECTED
public static final ApplymentState CANCELED
public static ApplymentState[] values()
for (ApplymentState c : ApplymentState.values()) System.out.println(c);
public static ApplymentState 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.