private EnumType getEnumType() {
return options.getEnumType();
}
java类javax.persistence.EnumType的实例源码
Oson.java 文件源码
项目:oson
阅读 29
收藏 0
点赞 0
评论 0
Oson.java 文件源码
项目:oson
阅读 36
收藏 0
点赞 0
评论 0
public Oson setEnumType(EnumType enumType) {
options.setEnumType(enumType);
return this;
}
Oson.java 文件源码
项目:oson
阅读 31
收藏 0
点赞 0
评论 0
public <T> Oson setEnumType(Class<T> type, EnumType enumType) {
cMap(type).setEnumType(enumType);
return this;
}
FieldMapper.java 文件源码
项目:oson
阅读 31
收藏 0
点赞 0
评论 0
public FieldMapper setEnumType(EnumType enumType) {
this.enumType = enumType;
return this;
}
Options.java 文件源码
项目:oson
阅读 32
收藏 0
点赞 0
评论 0
public EnumType getEnumType() {
return enumType;
}
Options.java 文件源码
项目:oson
阅读 24
收藏 0
点赞 0
评论 0
public void setEnumType(EnumType enumType) {
this.enumType = enumType;
}
ClassMapper.java 文件源码
项目:oson
阅读 24
收藏 0
点赞 0
评论 0
public ClassMapper setEnumType(EnumType enumType) {
this.enumType = enumType;
return this;
}
AttributeEntity.java 文件源码
项目:lj-projectbuilder
阅读 33
收藏 0
点赞 0
评论 0
@Enumerated(EnumType.STRING)
@Column(name="TYPE", nullable = false)
public DataType getDataType() {
return dataType;
}
CodeTemplateEntity.java 文件源码
项目:lj-projectbuilder
阅读 32
收藏 0
点赞 0
评论 0
@Enumerated(EnumType.STRING)
@Column(name="TEMPLATE_TYPE", nullable = false)
public TemplateType getType() {
return type;
}