LinkedHashSet
に変換するための Bean を作成しようとしていEnumSet
ます。これは、Neo4j がこの状況で変換クラスを必要とするため必要です。私はこれまでにクラスを実装しました:
public class LinkedHashSetToEnumSet implements Converter<LinkedHashSet<Access>, EnumSet<Access>> {
@Override
public EnumSet<Access> convert(LinkedHashSet<Access> h) {
EnumSet<Access> e = new EnumSet<Access>(); // error here
// Somehow do a for loop to add all of e to h?
return e;
}
}
エラーが次のコメント行// error here
にある場合、エラーが発生します。
Cannot instantiate the type EnumSet<Resource.Access>
を作成するためにここで欠けている簡単なことはありEnumSet
ますか?
編集:
を に変換することは可能HashSet
ですEnumSet
か?