用于设置枚举类型的转换 优先级低于json.rule.convert
假定有如下枚举类
public enum UserType {
//管理员
ADMIN(1, "管理员"),
//成员
MEMBER(2, "成员"),
//游客
GUEST(3, "游客");
private int type;
private String desc;
public int getType() {
return type;
}
public String getDesc() {
return desc;
}
UserType(int type, String desc) {
this.type = type;
this.desc = desc;
}
}
对于如下字段
/**
* 用户类型
*/
private UserType type;
默认将枚举类型转换为String
处理,给出可用值为枚举中的实例名
上述字段将被处理为
/**
* 用户类型
* @see UserType
*/
private String type;
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
type | string | 非必须 | 用户类型 | 枚举: ADMIN,MEMBER,GUEST 枚举备注: ADMIN :管理员 MEMBER :成员 GUEST :游客 mock: @pick(["ADMIN","MEMBER","GUEST"])) |
int
处理,给出可用值为枚举中的type
字段json.rule.enum.convert[com.itangcent.common.constant.UserType]=~#type
/**
* 用户类型
* @see UserType#type
*/
private int type;
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
type | integer | 非必须 | 用户类型 | 枚举: 1,2,3 枚举备注: 1 :管理员 2 :成员 3 :游客 mock: @pick([1,2,3]) |
package com.itangcent.common.constant;
public interface TypeAble {
int getType();
}
UserType
,使其继承TypeAble
public enum UserType implements TypeAble {
...
}
TypeAble
的类转换为int
处理,给出可用值为枚举中的type
字段json.rule.enum.convert[groovy:it.isExtend("com.itangcent.common.constant.TypeAble")]=~#type