If the mapping result type is a Set of Enums use the EnumSet implementation type instead of a hashmap. ``` Set<EnumType> map(Set<OtherType) { ... Set<EnumType> target = EnumSet.noneOf(EnumType.class); ... return target; } ```