用于设置使用
@see
枚举类型时的默认使用ordinal
作为取值
所以要使用
enum.use.ordinal
需要先在推荐配置中取消enum.use.by.type
假定有如下枚举类
public enum UserType {
//管理员
ADMIN(1, "管理员"),
//成员
MEMBER(2, "成员"),
//游客
GUEST(3, "游客");
private int code;
private String desc;
public int getCode() {
return code;
}
public String getDesc() {
return desc;
}
UserType(int code, String desc) {
this.code = code;
this.desc = desc;
}
}
对于如下字段
/**
* 用户类型
*
* @see UserType
*/
private int type;
@see UserType
会被忽略掉@see UserType
时默认使用ordinal
字段作为取值enum.use.ordinal[com.itangcent.common.constant.UserType]=true
/**
* 用户类型
* @see UserType#ordinal()
*/
private int type;
名称 | 类型 | 是否必须 | 默认值 | 备注 | 其他信息 |
---|---|---|---|---|---|
type | integer | 非必须 | 用户类型 | 枚举: 0,1,2 枚举备注: 0 :管理员 1 :成员 2 :游客 mock: @pick([0,1,2]) |
package com.itangcent.common.constant;
public interface BaseEnum {
}
UserType
,使其继承BaseEnum
public enum UserType implements BaseEnum {
...
}
BaseEnum
的类默认使用ordinal
作为取值enum.use.ordinal[groovy:it.isExtend("com.itangcent.common.constant.BaseEnum")]=true
@see 枚举类
都默认使用ordinal
作为取值enum.use.ordinal=true