public static enum ApiBean.Status extends java.lang.Enum<ApiBean.Status>
| Enum Constant and Description |
|---|
CAN_NO_BE_REGISTERED
Cannot be registered.
|
INIT
init status.
|
REGISTERED
Already registered.
|
REGISTRABLE
Registrable.
|
REGISTRABLE_API
Registrable(only api).
|
REGISTRABLE_BEAN
Registrable(only bean).
|
| Modifier and Type | Method and Description |
|---|---|
static ApiBean.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ApiBean.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApiBean.Status INIT
public static final ApiBean.Status CAN_NO_BE_REGISTERED
public static final ApiBean.Status REGISTRABLE
public static final ApiBean.Status REGISTRABLE_API
public static final ApiBean.Status REGISTRABLE_BEAN
public static final ApiBean.Status REGISTERED
public static ApiBean.Status[] values()
for (ApiBean.Status c : ApiBean.Status.values()) System.out.println(c);
public static ApiBean.Status 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 nullCopyright © 2023 The Apache Software Foundation. All rights reserved.