user3681970
user3681970

Reputation: 1271

Java enummap confusion

Hi Can anyone help me in understanding the following line of code?

      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()))));

I am new to this. Have went through several articles online but could not able to figure out.

I want to create an unmodifiable map<EnumType, Pair<Long, Long>>. Based on enumtype i want to get the pair of Longs and see if it contains a particular long or not. Please help me in figuring out the best data structure for my usecase

Upvotes: 0

Views: 621

Answers (1)

alayor
alayor

Reputation: 5035

You can use 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())));

Upvotes: 1

Related Questions