Java - How to create new Entry (key, value)

前端 未结 11 1548
没有蜡笔的小新
没有蜡笔的小新 2020-11-27 09:55

I\'d like to create new item that similarly to Util.Map.Entry that will contain the structure key, value.

The problem is that

11条回答
  •  忘掉有多难
    2020-11-27 10:22

    org.apache.commons.lang3.tuple.Pair implements java.util.Map.Entry and can also be used standalone.

    Also as others mentioned Guava's com.google.common.collect.Maps.immutableEntry(K, V) does the trick.

    I prefer Pair for its fluent Pair.of(L, R) syntax.

提交回复
热议问题