如何将 rowmapper 中的结果集转换为枚举?
我的行映射器如下:
private static final class UserRowMapper implements RowMapper<User> {
User user = new User();
user.setId(rs.getInt("id"));
user.setUserType( (UserType)rs.getInt("userType")); // ?????
return user;
}
所以我尝试将数据库中的 userType 的整数值转换为枚举 UserType。
为什么这不起作用?
I have my rowmapper like:
private static final class UserRowMapper implements RowMapper<User> {
User user = new User();
user.setId(rs.getInt("id"));
user.setUserType( (UserType)rs.getInt("userType")); // ?????
return user;
}
So I am trying to cast the integer value in the db for userType to the enumeration UserType.
Why doesn't this work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
投了吗?不,做不到。
只要字符串有效,您就可以调用 valueOf 从字符串中获取 Enum 值。
Cast it? No, can't be done.
You can call valueOf to get the Enum value from the String, as long as the String is valid.
您可以对
Enum.values()
进行索引:您可能需要进行一些错误检查。 :)
You can index into
Enum.values()
:You might want to put in some error checking. :)