我正在尝试将EnumSet
对象存储到我的neo4j数据库中。但是,我得到了这个例外:
org.springframework.core.convert.ConversionFailedException: Failed to convert from type java.util.LinkedHashSet<?> to type java.util.EnumSet<?> for value '[READ, WRITE, OPTIONAL]'; nested exception is java.lang.IllegalArgumentException: Could not instantiate Collection type: java.util.EnumSet
有没有办法用其他东西代替EnumSet
?或者,有没有人知道一项工作?
我尝试将该集设为HashSet
,但我失去了EnumSet
给我的方法,例如noneOf()
。