public static enum BaseCodeMsgConstants.BaseCodeMsg extends Enum<BaseCodeMsgConstants.BaseCodeMsg> implements CodeMsgI
| Enum Constant and Description |
|---|
OK |
| Modifier and Type | Method and Description |
|---|---|
String |
getCode() |
String |
getMsg() |
static BaseCodeMsgConstants.BaseCodeMsg |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BaseCodeMsgConstants.BaseCodeMsg[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaseCodeMsgConstants.BaseCodeMsg OK
public static BaseCodeMsgConstants.BaseCodeMsg[] values()
for (BaseCodeMsgConstants.BaseCodeMsg c : BaseCodeMsgConstants.BaseCodeMsg.values()) System.out.println(c);
public static BaseCodeMsgConstants.BaseCodeMsg 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 © 2022. All rights reserved.