public class MapUtil extends Object
Modifier and Type | Method and Description |
---|---|
static <K,V> V |
computeIfAbsent(Map<K,V> map,
K key,
Function<K,V> mappingFunction)
A temporary workaround for Java 8 specific performance issue JDK-8161372 .
This class should be removed once we drop Java 8 support. |
static <K,V> Map.Entry<K,V> |
entry(K key,
V value)
Map.entry(key, value) alternative for Java 8.
|
public static <K,V> V computeIfAbsent(Map<K,V> map, K key, Function<K,V> mappingFunction)
public static <K,V> Map.Entry<K,V> entry(K key, V value)
Copyright © 2009–2021 MyBatis.org. All rights reserved.