Java 枚举映射混淆



嗨,谁能帮我理解下面的代码行?

      private Map<EnumType, Pair<Long, Long>> processToProductLineAndIndustryMap = new EnumMap<EnumType, Pair<Long, Long>>(
        Collections.unmodifiableMap(Stream.of(
                new SimpleEntry<>(EnumType.SOME_TYPE,
                    Pair.of(Question.getProductLineQuestionId(), Question.getAdvertiserIndustryQuestionId())))
                    .collect(Collectors.toMap((e) -> e.getKey(), (e) -> e.getValue()))));

我是新手。在网上浏览了几篇文章,但无法弄清楚。

我想创建一个不可修改的map<EnumType, Pair<Long, Long>>.基于枚举类型,我想获取一对长整型,看看它是否包含特定的长整型。请帮助我找出适合我的用例的最佳数据结构

您可以使用Collections.singletonMap(key, value) .

private Map<EnumType, Pair<Long, Long>> processToProductLineAndIndustryMap = new EnumMap<EnumType, Pair<Long, Long>>(
        Collections.singletonMap(EnumType.SOME_TYPE, Pair.of(Question.getProductLineQuestionId(), Question.getAdvertiserIndustryQuestionId())));

相关内容

  • 没有找到相关文章

最新更新