public enum BizType extends Enum<BizType>
| Enum Constant and Description |
|---|
CLEAN
清空数据
|
DELETE
删除
|
EXPORT
导出
|
FORCE
强退
|
GEN_CODE
生成代码
|
GRANT
授权
|
IMPORT
导入
|
INSERT
新增
|
OTHER
其它
|
SELECT
查询
|
UPDATE
修改
|
| Modifier and Type | Method and Description |
|---|---|
String |
getCode()
获取 code
|
static BizType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BizType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BizType OTHER
public static final BizType INSERT
public static final BizType UPDATE
public static final BizType DELETE
public static final BizType GRANT
public static final BizType EXPORT
public static final BizType IMPORT
public static final BizType FORCE
public static final BizType GEN_CODE
public static final BizType CLEAN
public static final BizType SELECT
private final String code
public static BizType[] values()
for (BizType c : BizType.values()) System.out.println(c);
public static BizType 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 nullpublic String getCode()
Copyright © 2024. All rights reserved.