📜  要映射的元组列表 + jpa - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:24.933000             🧑  作者: Mango

代码示例1
public Set> entrySet() {
    return tuple.getElements().stream() //
        .map(e -> new HashMap.SimpleEntry(e.getAlias(), tuple.get(e))) //
        .collect(Collectors.toSet());
  }
}