codecamp

HasorDB 处理枚举类型

基于枚举的 name​

枚举类型的映射无需指定特殊的 ​TypeHandler ​在 HasorDB 中它会自动被处理,具体映射规则为:

  • 数据库中字段类型必须为 ​字符串​,而字段值内容是映射到枚举的枚举的 ​name ​上
@Table(mapUnderscoreToCamelCase = true)
public class TestUser {
private UserType userType;

// getters and setters omitted
}

将数值映射到枚举​

将数值类型映射成为枚举值,需要枚举类型实现​ net.hasor.db.types.EnumOfValue​ 接口。

public enum LicenseEnum implements EnumOfValue<LicenseEnum> {
Private(0),
AGPLv3(1),
GPLv3(2),
;

private final int type;

LicenseEnum(int type) {
this.type = type;
}

public int codeValue() {
return this.type;
}

public LicenseEnum valueOfCode(int codeValue) {
for (LicenseEnum item : LicenseEnum.values()) {
if (item.getType() == codeValue) {
return item;
}
}
return null;
}
}

将Code映射到枚举​

Code ​是一个字符串值,区别于枚举的 ​name ​属性,它可以由用户自定义规则。从而不再担心枚举元素的变更。

将 Code 类型映射成为枚举值,需要枚举类型实现 ​net.hasor.db.types.EnumOfCode​ 接口。

public enum LicenseEnum implements EnumOfCode<LicenseEnum> {
Private("Private"),
AGPLv3("AGPLv3"),
GPLv3("GPLv3"),

private final String type;

LicenseEnum(String type) {
this.type = type;
}

public String codeName() {
return this.type;
}

public LicenseEnum valueOfCode(String codeValue) {
for (LicenseEnum item : LicenseEnum.values()) {
if (item.codeName().equalsIgnoreCase(codeValue)) {
return item;
}
}
return null;
}
}


HasorDB 类型处理器
HasorDB 自定义类型处理器
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }