如何将 rowmapper 中的结果集转换为枚举?

发布于 2024-12-28 12:42:44 字数 338 浏览 1 评论 0原文

我的行映射器如下:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

蓝梦月影 2025-01-04 12:42:44

投了吗?不,做不到。

只要字符串有效,您就可以调用 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.

梦在夏天 2025-01-04 12:42:44

您可以对 Enum.values() 进行索引:

user.setUserType( UserType.values()[rs.getInt("userType")] );

您可能需要进行一些错误检查。 :)

You can index into Enum.values():

user.setUserType( UserType.values()[rs.getInt("userType")] );

You might want to put in some error checking. :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文