Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
setParameter hibernate クエリで列挙値を設定する方法。
query.setParameter( "keyValue", Enum.valueOf(, KeywordType.specific));
列挙型があり、この列挙型のインスタンスKeywordTypeを渡したいと仮定します。specific
KeywordType
specific
query.setParameter("keyValue", KeywordType.specific);
他の場所で列挙型を使用するのと同じように。